PDA

View Full Version : Script For Landing Movement



Sinful Saint
01-08-2005, 05:52 AM
Is there an intown movement script for Landing and nearby hunting places? (Like .en and .ta) It'd be a great help for an infrequent visitor like me. If anyone knows of one, please post it.

Thanks!

Artha
01-08-2005, 07:45 AM
This will get you to most places inside the town:

start:
put dir %0
match northeast northeast.
match northwest northwest.
match southwest southwest.
match southeast southeast.
match north north.
match south south.
match west west.
match east east.
match up up.
match down down.
match done GO
matchwait

north:
move n
goto start

south:
move s
goto start

east:
move e
goto start

west:
move w
goto start

northeast:
move ne
goto start

southeast:
move se
goto start

southwest:
move sw
goto start

northwest:
move nw
goto start

up:
move up
goto start

down:
move down
goto start

done:
move go %0
put dir stop
exit

Insodus
01-09-2005, 03:22 AM
this is my personal one.

easy use, works from TSC.

.wehn_move glacier

that'll get you to the glacier. and then wherever it drops you, if you run

.wehn_move

it'll bring you back

there is a ton of areas, krolvin, danjirland, zombies, grave, strnghold. take a peek at the code and you'll get it.

Sinful Saint
01-09-2005, 03:47 AM
It works real good! Thanks!!