alias not working properly

Posted by Den010 on Thu 10 Oct 2013 01:14 AM — 6 posts, 23,234 views.

USA #0
I am trying to write aliases to use various portals in Aardwolf.

get time 1108784533
hold time
enter
put time 1108784533
dual @second

it will get the portal from the bag, hold it, enter it, then dual my offhand weapon. It will not put the portal back in the bag. It says I do not have that. If I copy and paste the exact line (put time 1108784533) it will put it in the bag.

My question is: Why won't it do it from the alias? Everything else works.
USA Global Moderator #1
oh. You have to remove time first before putting it in a container.
Amended on Thu 10 Oct 2013 03:02 AM by Fiendish
USA #2
<aliases>
<alias
match="losttime"
enabled="y"
expand_variables="y"
sequence="100"
>
<send>get time 1108784533
hold time
enter
put time 1108784533
dual @second</send>
</alias>
</aliases>
USA #3
that was it. this is what i have now. Thank you. I knew it would be something simple I overlooked.

<aliases>
<alias
match="losttime"
enabled="y"
expand_variables="y"
sequence="100"
>
<send>get time 1108784533
hold time
enter
rem time
put time 1108784533
dual @second</send>
</alias>
</aliases>
USA #4
One more question.

Can you not use variables in macros?
Australia Forum Administrator #5
Template:faq=17
Please read the MUSHclient FAQ - point 17.


Make the macro call an alias. Then the alias can use variables.