function il_curare ()
if prev_curare == 1 then -- Line 424
return 'You are afflicted 1.'
prev_curare = 2 -- Line 426
end
if prev_curare == 2 then
return 'You are afflicted 2.'
prev_curare = 1
end
end
function venom_scytherus (n,o,wc)
Send ('secrete scytherus')
Send ('conjure '..target['cur']..' illusion '..il['bite']..il['nl']..il_curare())
Send ('bite '..target['cur'])
Send ('purge')
end
Compile error
World: Achaea
Immediate execution
[string "Script file"]:426: 'end' expected (to close 'if' at line 424) near 'prev_curare'Why is it telling me that? heh