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
➜ General
➜ search/replace
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Morten
(5 posts) Bio
|
Date
| Tue 11 Sep 2001 09:28 AM (UTC) |
Message
| Greetings once again...
I would like to know if it is possible to search after
a certain words and then change them before they are
printed to the screen?
Like:
You wield the Globe of Protection.
Should then be replaced with:
You wield the Globe of Protection. (Hit: 90 Dam: 100)
I figured out that it must be possible via a trigger or something?
In advance, thanks.
Morten | Top |
|
Posted by
| Nick Gammon
Australia (23,133 posts) Bio
Forum Administrator |
Date
| Reply #1 on Wed 12 Sep 2001 01:27 AM (UTC) |
Message
| Yes, you could do something like this:
Trigger: You wield *.
Omit from output: checked
Label: Wield
Script: OnWield
And then put this subroutine in the script file (VBscript) - ensure scripting is enabled.
sub OnWield (strTriggerName, strTriggerLine, aryWildcards)
dim weapon, hit, dam
' weapon is in the first wildcard
weapon = aryWildcards (1)
' work out spell duration based on chant
Select Case weapon
Case "the Globe of Protection"
hit = 90
dam = 100
Case "a Silver Sword"
hit = 80
dam = 150
' --- and so on
Case Else
hit = -1
dam = -1
End Select
' show HP and Dam if known
if hit = -1 then
world.note "You wield " & weapon & " (unknown HP)"
else
world.note "You wield " & weapon & ". (Hit: " _
& hit & " Dam: " & dam & ")"
end if
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.
9,241 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top