22.05.2012, 13:07
Here's an example of a levelup command, to show you how the function itself works, although it's not really all that advanced.
Incase anyone was wondering.
pawn Код:
CMD:expup( playerid, params[] )
{
accInfo [ playerid ] [ Experience ] ++;
if( accInfo [ playerid ] [ Experience ] >= MAX_LEVEL_STAGES )
{
// They have gained enough experience to level up!
// If you happen to increase the maximum level stages, you need to modify the textdraws aswell.
LevelUp ( playerid, accInfo [ playerid ] [ Level ] );
// We pass their account variable through the LevelUp function so we can send them a message
// of their old level aswell!
}
return true;
}