The Dink Network

Juggling variables makes strange noises (solved somehow)

February 4th 2014, 07:08 AM
dragon.gif
Quiztis
Peasant He/Him Sweden bloop
Life? What's that? Can I download it?! 
Amongst all joys and new DMODs, a wild problem appears!

In FreeDink debug:

[debug] Script sq22 is entered at 112:17 (offset 2357).
[ERROR] [DinkC] sq22:115: procedure 'wait' takes 1 parameters


I have rewritten all my code to juggle variables instead of int:ing new ones. But I really need a wait here and all the juggling is already complete at this point. This skips the wait! Even if I type:

wait(1);
wait(10);


It still skips it. I need a small wait of 10 to not damage Dink too early. I may post more code later but I need to go, see ya.
February 4th 2014, 07:20 AM
wizardb.gif
Kyle
Peasant He/Him Belgium
 
There is no way a wait is skipped, unless there's a bug in the line before it that prevents the rest from running. Try putting a say() in front of the wait() to see if that runs.

Else, we need more code