14.06.2013, 22:00
(
Последний раз редактировалось Goldenfox; 16.06.2013 в 21:15.
)
Try:
Код:
{ if(PlayerInfo[playerid][pDonateRank] < 1) { if(PlayerInfo[playerid][pTokens] < 1) { SendClientMessageEx(playerid, COLOR_YELLOW, "VIP: You do not have enough tokens for the materials."); return 1; } PlayerInfo[playerid][pTokens] -= 1; format(string, sizeof(string), "VIP: You have traded 1 token for 1000 materials, you now have %d token(s).", PlayerInfo[playerid][pTokens]); SendClientMessageEx(playerid, COLOR_YELLOW, string); new currentmats = PlayerInfo[playerid][pMats]; PlayerInfo[playerid][pMats] = currentmats +1000; } }