09.12.2014, 07:43
pawn Код:
CMD:earthquake(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
SendClientMessage(playerid, -1, "You have started an earthquake event!");
//Create your objects here, CreateObject(objectid, x, y, z); as you will make.
}
else
{
return SendClientMessage(playerid, -1, "{FF0000}You're not rcon administrator.");
}
return 1;
}