18.08.2011, 11:52
: warning 213: tag mismatch
in the line with "if(GetPlayerDistance etc" should be a mistag, what is it? :S
PHP код:
public OnBombExplode(playerid, num, Float:x, Float:y, Float:z)
{
//is called everytime a bomb explodes
for(new i = 0; i < MAX_PLAYERS; i ++) {
if(GetPlayerDistanceToPoint(i, x, y, z) < 2 * gBombTypes[btype[playerid][num]][2]) {
SetPVarInt(i, "nearExp", playerid);
SetTimerEx("ResetNearExp", 15000, 0, "i", i);
}
}
return 1;
}