Without seeing the code I'm not sure, but my guess is you're doing this:
event ev = Event(whatever);
SetEventInteger(ev,0,SOMEINT);
DelayEvent(1.0,OBJECT,ev);
what you need to do is set ev to the return value of the SetEvent function. e.g.
event ev = Event(whatever);
ev = SetEventInteger(ev,0,SOMEINT);
DelayEvent(1.0,OBJECT,ev);
Just a guess, if that's not the case post a little of your code so we can get an idea what is going wrong.
Modifié par FergusM, 27 juillet 2010 - 02:03 .