|
EmilyRose Newbie
Joined: 09 Jul 2008 Posts: 8
|
Posted: Fri Sep 25, 2009 3:12 pm
tick timer going nuts |
Code: |
<?xml version="1.0" encoding="ISO-8859-1" ?>
<cmud>
<class name="ticktimer" copy="yes">
<trigger priority="4300" copy="yes">
<pattern>^~-~-~> TICK ~<~-~-$</pattern>
<value> #TS 30
#CO Black
</value>
</trigger>
</class>
</cmud> |
When I turn on the tick timer its replacing the tick message from my mud with TICK IN 1 SECOND
or something like that, which is driving me nuts.
I'm just trying to produce a 30 second counter above the command line at the bottom of the screen, which
this code produced in zmud.
Anyone know what I'm doing wrong, I'm about ready to rip my hair out :P
Thanks |
|
|
|
Liath Novice
Joined: 25 Aug 2009 Posts: 38
|
Posted: Fri Sep 25, 2009 4:21 pm |
Just make a trigger to gag the ticktimer output.
Here are my Aardwolf ticktimer triggers:
Code: |
<?xml version="1.0" encoding="ISO-8859-1" ?>
<cmud>
<class name="Tick" copy="yes">
<trigger priority="2680" copy="yes">
<pattern>--~> TICK ~<--$</pattern>
<value>#gag
#TS 30</value>
</trigger>
<trigger priority="2780" copy="yes">
<pattern>TICK IN (%d) SECONDS.$</pattern>
<value>#gag</value>
</trigger>
<trigger priority="2790" copy="yes">
<pattern>Timer now at 30 secs.$</pattern>
<value>#gag
saff
#gag</value>
</trigger>
</class>
</cmud>
|
|
|
|
|
|
|