27.10.2016, 14:39
hello guys, I have this cmd:
it compiles fine, but it doesn't save the values on the ini file, how do i have to save it?
Код:
CMD:makemegod(playerid, params[]){
if(IsPlayerAdmin(playerid))
{
PlayerInfo[playerid][Admin] += 999999;
PlayerInfo[playerid][Score] += 999999;
SetPlayerScore(playerid, 999999);
}
else SendClientMessage(playerid, COLOR_SYS, "** You are not authorized to use this command. **");
return 1;
}


