02.03.2015, 14:01
It's really basic, so there's not much to be said.
But i still noticed a few errors, such as your saving:
And in your commands, like /me, /do, there's no reason to declare a new "action" or "shout" with 100 cells, you can just use "params".
And lastly in your /givemestats command, shouldn't you use a compound statement for this?
But i still noticed a few errors, such as your saving:
Code:
INI_WriteInt(File,"Cash",GetPlayerMoney(playerid)); INI_WriteInt(File,"Helper",GetPlayerMoney(playerid)); INI_WriteInt(File,"Dev",GetPlayerMoney(playerid));
And lastly in your /givemestats command, shouldn't you use a compound statement for this?
Code:
if(IsPlayerAdmin(playerid)) PlayerInfo[playerid][pAdmin] = 5; PlayerInfo[playerid][pHelper] = 3; PlayerInfo[playerid][pDev] = 3;