Author |
Message |
Topic: I need autospell trigger help |
Penjulum
Replies: 6
Views: 8502
|
Forum: zMUD General Discussion Posted: Thu Mar 13, 2003 2:05 pm Subject: I need autospell trigger help |
You need to adjust your AutoSpell triggers to have them add the spell you are casting to a list.
#TRIGGER {^Your image is no longer blurred and shifting.} {#additem SpellList blur; blur} {AutoSpell}
... |
Topic: Help with sound trigger. |
Penjulum
Replies: 4
Views: 7033
|
Forum: zMUD General Discussion Posted: Tue Mar 04, 2003 3:56 pm Subject: Help with sound trigger. |
The #play command plays the sound file you tell it to. If the file name has spaces the path/name must be in quotes.
ex: #play chimes.wav
#play c:windowsmediastart.wave
#play "c:wind ... |
Topic: Incremental list of characters |
Penjulum
Replies: 4
Views: 5214
|
Forum: zMUD General Discussion Posted: Tue Mar 04, 2003 7:26 am Subject: Incremental list of characters |
Using the same basic variables of Emit:
#alias Set
#var Count {%left( %1, 3)}
#alias Next
#var nCount1 %ascii( @Count)
#var nCount2 %ascii( %right( @Count, 1))
#var nCount3 %ascii( %right( ... |
|