Adventuring in the manor

amosmj

New member
When I use:
cli_execute("adventure manor2:haunted ballroom");

I get two adventures in the ballroom.

If I use:
cli_execute("adventure manor:haunted ballroom");

I get zero adventures in the ballroom. How can I get 1 adventure?
 

Rinn

Developer
You shouldn't be adding the zone's location:
Code:
cli_execute("adventure 1 haunted ballroom");

But since you're writing a ash script, you should probably use:
Code:
adventure(1, $location[haunted ballroom]);
 
Top