| View previous topic :: View next topic |
| Author |
Message |
zorlac
Joined: 14 Jan 2005 Posts: 18 Location: South America
|
Posted: Fri Dec 22, 2006 12:03 pm Post subject: #mark... new version question |
|
|
Hi!
ok got a couple of questions.
1. I used to #mark...move around an area...then at the end get a list of the moves with the #map command...it used to give me an output like this: Path { w w s n....etc}
I downloaded the new version..and now when I type #map after Ive walked for a while..it gives me lots of options..and I dont see anywhere the option to see the list of directions since I started marking... how do I do that?
2. I did set macros to move around the realm with arrows ...left arrow -> w etc..
is there anyway that I can map while I move with the arrows and not by typing each direction??? ...before updating tintin..the #map command gave me an empty list of dirs if I did move with arrows...
Thanks..and Feliz Navidad Scandum!
TINTIN++ ROCKS!
Zorlac |
|
| Back to top |
|
 |
titeuf
Joined: 29 Jul 2006 Posts: 84
|
|
| Back to top |
|
 |
davevnj
Joined: 22 Nov 2006 Posts: 55
|
Posted: Sat Dec 23, 2006 12:53 pm Post subject: macros |
|
|
You should be able to write more than one line per macro like:
so instead of
| Code: | #macro {keycode}
{
n
} |
Try
| Code: | #macro {keycode}
{
n;
#showme {north}
} |
and you can put in whatever map commands that you need in the macro. unfortunately I have no clue what commands would be appropriate, so you get to do that. |
|
| Back to top |
|
 |
zorlac
Joined: 14 Jan 2005 Posts: 18 Location: South America
|
Posted: Sat Dec 23, 2006 9:57 pm Post subject: almost there |
|
|
heya! yeah..#path works thanks.
Hmm ... still need to know what command can I use to add directions to the current path when macros(arrows) are used to move around....
this is my current macro:
#macro {\eOA} {north};
if I also use #showme north...still doesnt add the direction to the path Im marking...
hmm Thiking about it .... :idea: maybe I should add a pathdir for the real input.....something like:
#pathdir {\eOA} {\eOB}
gonna try it out!
ok tested it out...and doesnt work...hmmm any ideas?
Thanks,
Z
Last edited by zorlac on Sat Dec 23, 2006 10:21 pm; edited 1 time in total |
|
| Back to top |
|
 |
mleo2003
Joined: 01 Nov 2006 Posts: 21 Location: Mississippi
|
Posted: Sat Dec 23, 2006 10:13 pm Post subject: |
|
|
It seems to me, that
| Code: | | #macro {\eOA} {north; #path {north} {south}}; |
should do the trick for you. |
|
| Back to top |
|
 |
zorlac
Joined: 14 Jan 2005 Posts: 18 Location: South America
|
Posted: Sat Dec 23, 2006 10:28 pm Post subject: |
|
|
oOoO that was a quick reply!..
just tested it out...works perfectly
Hmm off to map areas..
thanks! |
|
| Back to top |
|
 |
Scandum Site Admin
Joined: 03 Dec 2004 Posts: 3281
|
Posted: Tue Dec 26, 2006 1:09 pm Post subject: Re: almost there |
|
|
| zorlac wrote: | this is my current macro:
#macro {\eOA} {north};
|
Using: #macro {\eOA} {n} would do the trick as well since n e s w u d are set as pathdirs by default. For the automapper this is the only way it'll work properly as well. |
|
| Back to top |
|
 |
|