21.07.2011, 02:33
These fucking line crash my server when its called (im 100% sure cos i debuged my script)
Everything looks fine but it crash my server :/
Everything looks fine but it crash my server :/
pawn Код:
SetTimerEx("ExplodeBomb", 10000, false,"%f,%f,%f,10,10", X, Y, Z);
//Here is the function that is called but its not it...i tested it bu calling it directly
forward ExplodeBomb(Float:X, Float:Y, Float:Z,Float:Radius, Type);
public ExplodeBomb(Float:X, Float:Y, Float:Z,Float:Radius, Type)
{
if(Type == 0) {Type = 10;}
CreateExplosion( X, Y, Z, Type, Radius);
return 1;
}