public Nuked(playerid, params[]) { new pName[24], string[256], Float:X, Float:Y, Float:Z; GetPlayerName(playerid, pName, sizeof(pName)); if(PlayerInfo[playerid][pAdmin] < 133 return false; for(new i=0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { GetPlayerPos(i, X, Y, Z); CreateExplosion(X, Y, Z+1, 7, 10.0); CreateExplosion(X+1, Y, Z, 7, 10.0); CreateExplosion(X, Y+1, Z, 7, 10.0); CreateExplosion(X+1, Y, Z, 7, 10.0); GameTextForAll("~w~DIE!",2000,3); } } return 1; } |
Originally Posted by lrZ^ aka LarzI
Explosions doesn't show up? :S
Show us how you call the function |