[GameMode] newmode RPG
#9

Here's an example of a levelup command, to show you how the function itself works, although it's not really all that advanced.

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;
}
Incase anyone was wondering.
Reply


Messages In This Thread
newmode RPG (0.3e +) - by 2KY - 21.05.2012, 22:50
Re: newmode RPG - by coole210 - 22.05.2012, 02:43
Re: newmode RPG - by Tidzii - 22.05.2012, 08:03
Re: newmode RPG - by HighPitchedVoice - 22.05.2012, 09:01
Re: newmode RPG - by TheSwitcher - 22.05.2012, 09:12
Re: newmode RPG - by Derek_Westbrook - 22.05.2012, 09:19
Re: newmode RPG - by 2KY - 22.05.2012, 12:41
Re: newmode RPG - by Derek_Westbrook - 22.05.2012, 12:46
Re: newmode RPG - by 2KY - 22.05.2012, 13:07
Re: newmode RPG - by $$inSane - 22.05.2012, 13:38
Re: newmode RPG - by 2KY - 22.05.2012, 18:56
Re: newmode RPG - by [GF]Logic - 22.05.2012, 19:03
Re: newmode RPG - by 2KY - 23.05.2012, 00:05
Re: newmode RPG - by Juninho_Oakley - 23.05.2012, 00:36

Forum Jump:


Users browsing this thread: 1 Guest(s)