:\Users\Davz\Desktop\Server 2\gamemodes\Demonic.pwn(1502) : error 028: invalid subscript (not an array or too many subscripts): "i"
CMD:slapall(playerid, params[])
{
if (!IsPlayerAdmin(playerid)) return
SendClientMessage(playerid, 0xFFFF00AA, "You're not an Adminstrator.");
new Float:x, Float:y, Float:z;
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && (i != playerid)
{
PlayerPlaySound(i,1190,0.0,0.0,0.0);
GetPlayerPos(i,x,y,z);
SetPlayerPos(i,x,y,z+5);
}
return 1;
}