SA-MP Forums Archive
Simple /signcheck problem - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Simple /signcheck problem (/showthread.php?tid=580672)



Stats/Player Information not loading - NotYoMama - 07.07.2015

Thanks for nothing, I figured it out myself. Delete/Archive this thread



Re: Simple /signcheck problem - Mouiz - 07.07.2015

Try this

PHP код:
public Payday()
{
    for(new 
0MAX_PLAYERSi++)
    {
        if(
IsPlayerConnected(i))
        {
                new 
nxtlevel;
            
nxtlevel PlayerInfo[i][pLevel]+1;
            
GameTextForPlayer(i"~y~PayDay~n~~w~Paycheck"50001);
              new 
payday nxtlevel*15;
            
GivePlayerCash(i,payday);
                    
PlayerInfo[i][pExp]++;
                }
    }
    return 
1;




Re: Simple /signcheck problem - NotYoMama - 07.07.2015

How can I implement Rules(playerid) into OnPlayerConnect? Or what should I do?