29.07.2008, 12:04
if (strcmp("/allah", cmdtext, true) == 0) {
new Float
;
new Float:y;
new Float:z;
GetPlayerPos(playerid, x, y, z);
CreateExplosion(x, y, z, 3, 10);
return 1;
}
return 0;
}
you opened your command after the explosion, an IF statement should be opened with a bracet.. read the pawn-lang.pdf
new Float
![angry](images/smilies/mad.gif)
new Float:y;
new Float:z;
GetPlayerPos(playerid, x, y, z);
CreateExplosion(x, y, z, 3, 10);
return 1;
}
return 0;
}
you opened your command after the explosion, an IF statement should be opened with a bracet.. read the pawn-lang.pdf
![Smiley](images/smilies/smile.png)