A amosmj New member Aug 5, 2008 #1 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?
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 Aug 5, 2008 #2 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]);
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]);