Page 1 of 1

Runewords / Spell names list in case someone need them.

PostPosted: Fri Apr 08, 2011 5:52 pm
by Tuck
Here is array of 160 spellnames and runewords. Might be used not in just cmud, just decode easy xml format.

Update: 190 spells for now. Example trigger to read on cast, decrypt, and display attached.
Update2: 207 spells for now. All decrypted. Guess, there is no more spells in Sloth. Even blizzard decoded.


Trigger pattern is:
Code: Select all
Trigger pattern is: ^(*) utters the words, '(*)'$

Trigger body:
$spelltoconvert=%2
#loop %numitems(@converspellarray) {
  $spelljumblekey=%dbkey(@converspellarray,%i)
  $spellnamevalue=%db(@converspellarray,%dbkey(@converspellarray,%i))
  #if ($spelltoconvert = $spelljumblekey OR $spelltoconvert = $spellnamevalue) {
    #gagspace
    #show %ansi(green)%1%ansi(reset)%if(%len(%1)<20,%repeat(".",@wraplength-%len(%1))) casts '%ansi(magenta)$spellnamevalue%ansi(reset)'     ~($spelljumblekey~)
    #BREAK
  }
}

Re: Runewords / Spell names list in case someone need them.

PostPosted: Sat Apr 09, 2011 7:16 am
by *Breeze*
try now Tuk

Re: Runewords / Spell names list in case someone need them.

PostPosted: Wed Apr 13, 2011 5:18 pm
by Tuck
Thanks Benq!