Score it money
#6

You can also do it in other ways though :

pawn Код:
public OnPlayerSpawn(playerid)// Maybe your script will give money to player after spawning.
{
     SetTimerEx("ScoreMoney", 500, true, "i", playerid);
     return true;
}

public ScoreMoney(playerid)
{
    SetPlayerScore(playerid, GetPlayerMoney(playerid)); // This will get the player's money and will assing it to his/her score.
    return true;
}
Reply


Messages In This Thread
Score it money - by LeanAlex - 14.09.2014, 23:49
Re: Score it money - by MasonSFW - 14.09.2014, 23:56
Re: Score it money - by Eth - 15.09.2014, 00:01
Respuesta: Re: Score it money - by LeanAlex - 15.09.2014, 00:03
Re: Score it money - by MasonSFW - 15.09.2014, 00:09
Re: Score it money - by SanAndreasMP - 15.09.2014, 00:23
Re: Score it money - by Eth - 15.09.2014, 09:43
Re: Score it money - by SilentSoul - 15.09.2014, 12:38

Forum Jump:


Users browsing this thread: 1 Guest(s)