Basic Zmud

by Alef

Back to Mechanic's Corner.

Alef2004-11-12 19:23:10
This may be very simple,, but can I turn off the output echo (or whatever it is) and if so how?
Daganev2004-11-12 22:14:35
click echo on triggers.. off under prefrences
Alef2004-11-12 22:30:55
Cheers, also how would I gag a message on the second time it appears.

For example clotting, how would I get:

1160h, 1100m, 1040e, 0p ex-
You do not bleed my friend.
1160h, 1100m, 1040e, 0p ex-
You do not bleed my friend.
1160h, 1100m, 1040e, 0p ex-
You do not bleed my friend.
1160h, 1100m, 1040e, 0p ex-

To be:

1160h, 1100m, 1040e, 0p ex-
You do not bleed my friend.
1160h, 1100m, 1040e, 0p ex-

Whilst still clotting three times?
Daganev2004-11-12 22:50:04
my guess...
Triggger: You do not bleed my friend.
Command: NotBleeding=1
......... #if {notBleeding=1} {#gag}

Trigger: You bleed %1 (or whatever the line is)
Command: Notbleeding=0
Unknown2004-11-13 00:47:53
QUOTE (daganev @ Nov 12 2004, 06:50 PM)
my guess...
Triggger: You do not bleed my friend.
Command:    NotBleeding=1
......... #if {notBleeding=1} {#gag}

Trigger:  You bleed %1 (or whatever the line is)
Command:    Notbleeding=0


Make sure you put an @ in front of your variables when referencing them. Also, if you want to see the first and not the rest, make sure you set your variable after you check the condition.

CODE
#TRIGGER {You do not bleed my friend.} {#if (@NotBleeding) {#gag;NotBleeding=1}}
#TRIGGER {You bleed %d health.} {NotBleeding=0}