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
➜ Word Colouring
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Rynok
USA (25 posts) Bio
|
Date
| Tue 25 Jul 2006 02:45 PM (UTC) Amended on Tue 25 Jul 2006 02:47 PM (UTC) by Rynok
|
Message
| I was wondering if there was a way to color all the names in my table "EnemyList" red?
Currently the only thing I found was how to do it by specifying the name in the trigger itself, which isn't dynamic at all, so I was looking for a better approach.
Example:
Enemylist DataTable = {"Rynok","Toy","Iou","Turtle"}
Trigger: Rynok slashes Toy with a bladed Turtle.
(Red Text ^ ^ ^) | Top |
|
Posted by
| Nick Gammon
Australia (23,133 posts) Bio
Forum Administrator |
Date
| Reply #1 on Tue 25 Jul 2006 09:51 PM (UTC) Amended on Tue 25 Jul 2006 09:52 PM (UTC) by Nick Gammon
|
Message
| Yes, there is. First, whenever you change the enemylist table, you need to convert that into a MUSHclient variable, with "|" between each one, like this:
EnemylistDataTable = {"Rynok","Toy","Iou","Turtle"}
SetVariable ("enemylist", table.concat (EnemylistDataTable , "|"))
The SetVariable line you would do when you add to the table (eg. in the alias that adds new enemies). This is a Lua example.
The variable now looks like this:
Rynok|Toy|Iou|Turtle
Now you simply make a trigger that pulls in that variable:
<triggers>
<trigger
custom_colour="7"
enabled="y"
expand_variables="y"
match="@!enemylist"
regexp="y"
repeat="y"
sequence="100"
>
</trigger>
</triggers>
|
- 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,647 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top