Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ Lua
➜ executing a /print within an a trigger with AddTimer?
|
executing a /print within an a trigger with AddTimer?
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Shoryuujo
(1 post) Bio
|
| Date
| Tue 25 Nov 2014 01:28 AM (UTC) |
| Message
| Not sure if this is quite the right area to post as a new user with a question about this and also pretty new to Lua, but I did a trigger for HP* that sends the following with sendto: dropdown selected as script:
print "Enable Thing"
AddTimer("TestTimer", 0, 0, 5, "/print "you're ready now!"", timer_flag.Enabled + timer_flag.OneShot, "")
the first print does work, but the AddTimer doesn't, because of the /print "You're ready now!" portion. I'm sure there are other perhaps easier ways of dealing with this, such as executing an alias that performs /print "you're ready now!"
note: my script prefix is / | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Tue 25 Nov 2014 04:05 AM (UTC) |
| Message
| AddTimer sends to the world, not to Execute, and thus the script won't be noticed. Try DoAfterSpecial:
print "Enable Thing"
DoAfterSpecial (5, 'print "ready now!"', sendto.script)
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | 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.
10,504 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top