Daganev2006-09-25 22:18:01
I have found that highlighting does not work when its part of a word.. I think. Or maybe it just doesn't highlight variables..
Vix2006-09-26 02:27:27
It works when highlighting part of a word, probably just not for variables.
dayan2006-09-26 10:43:20
Possible solution in Nexus for higlighting:
trigger pattern: monk{%d} (or something like that)
trigger script: #if $1=$MonkNumberIWant {#color yellow}
where variable MonkNumberIWant is number of your target
trigger pattern: monk{%d} (or something like that)
trigger script: #if $1=$MonkNumberIWant {#color yellow}
where variable MonkNumberIWant is number of your target
Vix2006-09-26 22:52:01
Ah, a modified version of that works! Here it is!
Alias: influ
Script: #set influ $1
Trigger: "monk{d}"
Script: #if $1 = $influ #highlight yellow
Alias: influ
Script: #set influ $1
Trigger: "monk{d}"
Script: #if $1 = $influ #highlight yellow
Daganev2006-09-26 23:09:21
AWESOME... thankyou.
Mira2006-09-27 02:13:38
Thank you, Vix!
Vix2006-09-27 03:57:49
Sorry took so long to figure out. Should really be thanking Dayan.
dayan2006-09-27 12:52:53