mob/verb/redit(message as text|null)
set hidden = 1
set name="redit"
src.client.command_text="redit "
var/z
var/t
var/area
area = (1,9999)
if(zone)
if(file2zone(zone+"area.z")
z = zone
zone = (1,9999)
if(zone == (1,9999)
goto, ((area))
I am getting this error:
Missing Comma or Right Parenthesis on line 11
Missing Comma or Right Parenthesis on Line 14
Read what the error says, you're missing a parenthesis.
Fixed code:
if(file2zone(zone+"area.z"))
if(zone == (1,9999))