[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

Gammon Forum

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  General
. . -> [Subject]  search/replace

search/replace

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page


Posted by Morten   (5 posts)  [Biography] 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
[Go to top] top

Posted by Nick Gammon   Australia  (22,975 posts)  [Biography] 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
[Go to top] 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.


8,348 views.

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]