PDA

View Full Version : Whistler Path scripting help



Gemmy
04-04-2007, 06:09 AM
Ok, I have a travel script for the path. How can I fiddle with it to stop and pick up flowers quick enough to actually have a shot at finishing the quest?

I detest afk scripting, just looking for a bit more convenience.

The Ponzzz
04-04-2007, 08:55 AM
Easist but most lengthly way to make a script, is after EACH movement to have it MATCH each flower name you need, if it sees it, it stops grabs it and moves on.

Example would be...

match e1 flowerx
match e2 flowery
match e obvious
move east
matchwait

e1:
put get flowerx
put stow flowerx
goto e

e2:
put get flowery
put stow flowery
goto e

e:
match f1 flowerx
match f2 flowery
match f obvious
move northeast
matchwait

And keep doing that for every direction and whether a flower can grow there or not etc.

Martaigne
04-04-2007, 12:32 PM
Isn't the Wiz capable of calling a small subroutine that would handle all of that at each move?

Gemmy
04-05-2007, 04:08 AM
Isn't the Wiz capable of calling a small subroutine that would handle all of that at each move?

Thank you both for the help, and that would be sweet. Anyone know how that works?

GS4-D
04-05-2007, 08:31 AM
Here's the scripts I made and used to get 3 of the rare flowers so far.

Couple of things.

1) Change 'cape' to whatever container you want to put your flower in.
2) Make sure you turn your room description on.

EDIT: Made for SF, 'should' work for Wizard but I didn't test it in Wizard.
EDIT2: Keep the file names for the scripts as I have named them because they play off of each other.

Gemmy
04-05-2007, 12:16 PM
Awesome, thanks very much:) Really appreciated!