05.02.2012, 21:00
I'm trying to make
equal to
No matter what pInfo[playerid]pCash] is always equivalent to Zero.
This is my code.
What is the problem?
+rep
pawn Код:
pInfo[playerid][pCash];
pawn Код:
GetPlayerMoney(playerid);
This is my code.
pawn Код:
public OnPlayerConnect(playerid)
{
pInfo[playerid][pCash] += GetPlayerMoney(playerid);
return 1;
}
+rep