28.03.2013, 09:47
Help fix code
recording only when the player is offline and that should be written when the game and offline
recording only when the player is offline and that should be written when the game and offline
PHP код:
if(PlayerInfo[i][pLevel] == 2 && PlayerInfo[i][pExp] == 1)
{
GetPlayerName(i, sendername, sizeof(sendername));
format(string, sizeof(string), "%s.ini",sendername);
new file = ini_openFile(string);
if(file < 0) print("no file");
else
{
ini_getString(file, "pDrug",string);
format(string, sizeof(string), "%s.ini",string);
new file2 = ini_openFile(string);
if(!file2)
{
ini_setInteger(file2, "FriendMoney",100000);
ini_setInteger(file2, "Text2",3);
ini_closeFile(file2);
ini_closeFile(file);
SendClientMessage(i, COLOR_ORANGE, "1");
}
}
}