24.04.2010, 14:13
How do make rcon command?
Example /rcon systemupdate
/systemupdate
Example /rcon systemupdate
/systemupdate
Код:
if(strcmp("/systemupdate", cmdtext, true, 10) == 0)
{
if(IsPlayerAdmin(playerid))
{
TimeM = 1;
TimeS = 0;
Time = SetTimer("UpdateTime", 1000, true);
TextDrawShowForAll(Systemupdate);
TextDrawShowForAll(Taimer);
Sys = true;
return 1;
}
}

