Quote:
Originally Posted by SB2002
And yes, I actually am an IT technician, we NEVER read the manual, lol
|
don't let this thing makes you weak IT teck.
@Link: This RPG system uses the UCS point system, I cannot run as a standalone hack, hence users must install UCS first.
@Revan: I mean all the templates that you want it to be re-made. The RPG.php template messes, the table is nice but you didn't make it perfectly (what is that table sitting on the top for ? why not middle or more thing bigger ?)
I suggest you should change rpg.php to this:
find:
PHP Code:
if (empty($userid))
{
eval(standard_error('You did not select an user to view RPG stats for!'));
}
replace it with:
PHP Code:
if (empty($userid))
{
$_GET['userid']=$bbuserinfo['userid'];
}
why this ?
Because when you come to rpg.php by entering to the url --> no userid --> it should show yourself. other ways the users come to this must be linked from a profile or something like so. one more thing with this:
find
PHP Code:
} else {
echo "You must be logged in.";
}
replace it with:
PHP Code:
} else {
print_no_permission();
}
well I'll test the battle late today. everyone, just wait.