Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm testing a conditional reload script and starting with very simple logic, but it's not working:
if 1=1
set variable='Yes';
end if
I get an error 'Script line error if 1=1'. Any ideas?
Thnx
hi,
try this
let x=1;
if x=1 then
set variable='yes';
end if
thanks
Thnx. Works. Seems like the 'Then' need to be on the same line as the 'if'.