If you use a variable in the until argument it will crash the server.
for example
Code: Select all
var test1 := 2;
var test2 := 2;
repeat
until (test1 == test2)Code: Select all
repeat
until (2 == 2)Using something like until (char.name == char.name) was fine, just seems to hate variables.
Thanks.