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
➜ VBscript
➜ Triggers changing upper/lower cases
|
Triggers changing upper/lower cases
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Simon
Sweden (39 posts) Bio
|
| Date
| Sat 30 Jun 2001 12:39 AM (UTC) |
| Message
| Hi
I am trying to do a trigger that does this:
trigger on: [Court] *: !aura
do:
change %1 into lowercase
aura %1
Anybody got some clues on how I should do? I've been trying and trying but all have failed :\
/Simon |
- "Where do you live, Simon?"
- "I live in the sick and wounded, doc."
Session 9 | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Sat 30 Jun 2001 05:52 AM (UTC) |
| Message
| A small script will do the trick.
Give the trigger a name (eg "aura") and tell it to run script "OnAura". Add the script below to your script file. This example is in VBscript. You will need to enable scripting.
sub OnAura (strTriggerName, strLine, arrWildCards)
dim person
person = arrWildcards (1) ' get first wildcard
person = lcase (person) ' make lower case
world.send "aura " + person ' send message
end sub
|
- 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.
14,505 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top