23.02.2011, 21:51
Hello, can someone create me a sample command to hide pickups?
Make the command /hidepickups
Make the command /hidepickups
CMD:hidepickups(playerid, params[])
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xFF3300, "You're not a server administrator.");
for(new p = 0; p < MAX_PICKUPS; p++)
DestroyPickup(p);
return 1;
}