Startup money failing
#1

So, I've got this little thing:

Код:
stock GivePlayerCash(playerid, money)
{
	PlayerInfo[playerid][pCash] += money;
	ResetMoneyBar(playerid);//Resets the money in the original moneybar, Do not remove!
	UpdateMoneyBar(playerid,PlayerInfo[playerid][pCash]);//Sets the money in the moneybar to the serverside cash, Do not remove!
	return PlayerInfo[playerid][pCash];
}
And I used it on registration:

Код:
	if(dialogid == DIALOG_GENDER)
	{
        if(response) // Ako uprve prvo
        {
            if(listitem == 0) // Ako oće da je muљko
            {
				PlayerInfo[playerid][pSex] = MALE;
   				SendClientMessage(playerid, -1,""COL_LIGHTBLUE"Mozete krenuti sa igranjem. Ukoliko imate pitanja, kontaktirajte admina putem komande /newchat, ili koristite komandu /help. Ugodno igranje.");
      			SpawnPlayer(playerid);
           		SetPlayerScore(playerid, GetPlayerScore(playerid) + 1);
     			GivePlayerCash(playerid, 5000);
            }
            if(listitem == 1) // Ako oće da je ћensko
            {
                PlayerInfo[playerid][pSex] = FEMALE;
               	SendClientMessage(playerid, -1,""COL_LIGHTBLUE"Mozete krenuti sa igranjem. Ukoliko imate pitanja, kontaktirajte admina putem komande /newchat, ili koristite komandu /help. Ugodno igranje.");
           		SpawnPlayer(playerid);
           		SetPlayerScore(playerid, GetPlayerScore(playerid) + 1);
     			GivePlayerCash(playerid, 5000);
            }
  			}
}
However, it doesn't save in the enum. And if the person relogs, he'll get 0 $.

I did have it in the OnPlayerSpawn for a while, and then I noticed that the player gets new 5000$ over and over again, whenever he respawns.
Reply


Messages In This Thread
Startup money failing - by Strummer - 20.07.2014, 20:47
Re: Startup money failing - by Scottas - 20.07.2014, 20:53
Re: Startup money failing - by Strummer - 20.07.2014, 21:00
Re: Startup money failing - by Scottas - 20.07.2014, 21:03
Re: Startup money failing - by Strummer - 20.07.2014, 21:23
Re: Startup money failing - by Strummer - 21.07.2014, 01:49
Re: Startup money failing - by flamur2012 - 21.07.2014, 02:36
Re: Startup money failing - by Strummer - 21.07.2014, 02:43
Re: Startup money failing - by flamur2012 - 21.07.2014, 02:46
Re: Startup money failing - by Strummer - 21.07.2014, 02:49

Forum Jump:


Users browsing this thread: 3 Guest(s)