Yeah I know, it's like prethink, I used entity_get_string() just to test, so I don't do all the global variables and stuff and then I have the big surprise of not working xD
Hmm, would it help if I skip some frames from it... like so:
PHP Code:
#define SkipFrames 3
new iCancel = 0
public fw_addtofullpack(/* etc */)
{
if(iCancel >= SkipFrames)
iCancel = 0
else
{
iCancel++
return FMRES_IGNORED
}
// stuff...
}
? :}
__________________