Okay, thanks for answers... but how i can get this:
I get crash if i use action
action box_newt()
{
newton_addentity(me, 75, NEWTON_BOX, onforceandtorque);
}
But everything works fine with
action box_newt()
{
wait(3);
newton_addentity(me, 75, NEWTON_BOX, onforceandtorque);
}
newton_addentity() calls some functions from DLL... at the first look, they are not loaded while calling them, without "wait"