|
Issue with alias re-firing itself.
|
Reply to this subject
Start a new subject
 
Refresh page
| Posted by |
Mr.lundmark
(36 posts) bio
|
| Date |
Sat 12 May 2012 02:08 PM (UTC) [ quote
] |
| Message |
Hi,
I'm unable to resolve my issue where I have an alias that sends its own input to the world. It seems to fire off itself even though I'm using the Send() function.
The alias looks like:
<alias
name="DoMovement"
script="Move"
match="^n$|^s$|^w$|^e$|^ne$|^nw$|^se$|^sw$|^u$|^d$"
regexp="y"
enabled="y"
sequence="20"
keep_evaluating="n"
></alias>
Where the implementation is:
function Move(name, input, wildcards)
Note(input)
Send(input)
end
And my output using trace is:
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
TRACE: Matched alias DoMovement
TRACE: Executing alias script "Move"
e
What am I doing wrong? :) | top |
|
| Posted by |
Nick Gammon
Australia (18,798 posts) bio
Forum Administrator |
| Date |
Reply #1 on Sat 12 May 2012 10:50 PM (UTC) [ quote
] |
| Message |
| Have you made your own Send function by any chance? Try changing the alias one to world.Send and see if that makes a difference. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | top |
|
| Posted by |
Mr.lundmark
(36 posts) bio
|
| Date |
Reply #2 on Sun 13 May 2012 06:45 AM (UTC) [ quote
] |
| Message |
| Wow! Nice catch! Yeah I had my own Send-function. I made the script in python and converted it to Lua. Totally missed that, thanks! | top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
688 views.
Reply to this subject
Start a new subject
 
Refresh page
top
Comments to:
Gammon Software support
Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )