21.11.2017, 09:49
Quote:
Can you just post the code required? I'm not going through all that especially since it's not english
|
PHP код:
for(new x; x< MAX_VEHICLES;x++)
{
Benzin[x] = random(100);
}
PHP код:
CMD:tankovat(playerid,params[])
{
new string[128];
Benzin[playerid] = random(100);
//if(PlayerInfo[playerid][Admin] < 2) return SendClientMessage(playerid,-1,"{FF0000}[ADMIN] {FFFFFF}Nemas AdminLevel 2");
format(string,sizeof(string),"Administrator %s all vehicle fuel",PlayerName(playerid));
SendClientMessageToAll(-1,string);
return 1;
}