01.10.2012, 02:20
if i have my laptop On when i type /laptop it should appear Laptop: Off if my laptop is on it should appear Laptop: OFF
please help +REP!
PHP код:
if(strcmp(cmd, "/laptop", true) == 0)
{
if(PlayerInfo[playerid][pLaptop] == 1)
{
new otext[20];
if(LaptopInc[playerid] == 0) { otext = "On"; }
else if(LaptopInc[playerid] == 1) { otext = "OFF"; }
ShowPlayerDialog(playerid,Dialog_Laptop,DIALOG_STYLE_LIST,"Laptop","1 Laptop: %s\n","Selecteaza","Inchide");
}
else
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Mergi la 24/7 si cumparati un Laptop !");
}
return true;
}