objects. However, going by the Reference Documentation version 1 (I doubt v2
ahas Scroll_Floor in yet), the prototype is:
Code: Select all
223:Scroll_Floor(int tag, bitfield type, int s/c, int dx, int dy);
s/c: 1=scroll, 2=carry, 3=scroll+carry
Within ZETH, the same arguments are printed in those menus when I selected Type
223. Placing that linedef in a map did not work, the sectors did not scroll.
Placing the same into an ACS script, ACC 1.30 revealed that this took too much
arguments, it does not take 5, but only 4.
Only by experimenting, I found out, how to do it. The correct prototype seems
to be:
Code: Select all
223:Scroll_Floor(int tag, int dx, int dy, int s/c);
