|
syrop Newbie
Joined: 02 Feb 2009 Posts: 2
|
Posted: Mon Feb 02, 2009 7:25 pm
Following team leader on MAPPER |
Hello,
Im new here and have a problem. Ho do i configure my mapper so that when i join a team of characters and walk around following the leader my current position on the map will keep on changing and updating?
Please help
Thank you |
|
|
|
Tech GURU
Joined: 18 Oct 2000 Posts: 2733 Location: Atlanta, USA
|
Posted: Mon Feb 02, 2009 8:14 pm |
The specifics vary depending on your MUD but the basic idea is to do a trigger that detect's which direction you went.
So assuming your MUD text is something
Code: |
You follow Ganju to the north. |
You'd do a trigger like the following using #TRIGGER and #MOVE
Code: |
#TR {You follow * to the (%w).} {#MOVE %1} |
The trigger matches text from the code to find out which direction you went and then tells the mapper to move you in that direction.
That's off the top of my head but you should have the basic idea. |
|
_________________ Asati di tempari! |
|
|
|
syrop Newbie
Joined: 02 Feb 2009 Posts: 2
|
Posted: Mon Feb 02, 2009 8:46 pm |
Thanks a lot!
Cheers |
|
|
|
|
|