Use this script to list weird behavior in sfall scripting so those generations of FO2 modders coming after us can benefit.
1. Halted script execution: as phobos explains here, some functions apparently cause frames to be skipped, meaning that anything which relies on a single frame for execution (temp_arrays, set_self, reg_anim_combat_check, etc.) breaks down. In the case of arrays, a simple workaround is of course to make permanent arrays instead.
2. UI button procs breaking down loops and arrays: Now this I still have no idea what causes it, though it could have to do with the previous point. What happens is that any button proc, or any procedure called by that button proc, causes temp arrays to break, and causes loops to become interrupted. What I mean by that last point is that if you, say, have a loop like this:
and you have your global script repeatedly checking whether the global variable is 2, then this gets called while the loop is still running. It's quite weird I think. A way to deal with problems arising from this is of course to add something like
before the loop, and set it to 1 afterwards, with your repeating script checking for whether the loop is finished.
1. Halted script execution: as phobos explains here, some functions apparently cause frames to be skipped, meaning that anything which relies on a single frame for execution (temp_arrays, set_self, reg_anim_combat_check, etc.) breaks down. In the case of arrays, a simple workaround is of course to make permanent arrays instead.
2. UI button procs breaking down loops and arrays: Now this I still have no idea what causes it, though it could have to do with the previous point. What happens is that any button proc, or any procedure called by that button proc, causes temp arrays to break, and causes loops to become interrupted. What I mean by that last point is that if you, say, have a loop like this:
Code:
procedure button begin
variable counter:=0;
while counter < 4 begin
global:=counter;
counter+=1;
end
end
and you have your global script repeatedly checking whether the global variable is 2, then this gets called while the loop is still running. It's quite weird I think. A way to deal with problems arising from this is of course to add something like
Code:
loop_finished:=0;
before the loop, and set it to 1 afterwards, with your repeating script checking for whether the loop is finished.