spell name subsitutions

Scripts and support for your favorite MUD client.
Nokie
Sojourner
Posts: 786
Joined: Sat Jan 27, 2001 6:01 am
Location: Atlanta, GA, USA
Contact:

spell name subsitutions

Postby Nokie » Sat May 26, 2001 2:57 pm

Do any of you have a faily comprehensive list of spell subsitutions?

i.e. 'pzar' is 'heal', 'vremm' is 'bless', etc.

Thanks,
Nokie Quickfingers!
Tzat
Sojourner
Posts: 115
Joined: Fri Apr 20, 2001 5:01 am
Location: Kingston, Ontario, Canada
Contact:

Postby Tzat » Sat May 26, 2001 5:24 pm

Gasp? Who would dare give away this sacred knowledge?! Thats why we have clerical/sorcerous spell knowledge Image

Wasn't bless "fido" before???
rylan
Sojourner
Posts: 2903
Joined: Fri Jan 26, 2001 6:01 am
Location: Hudson, MA

Postby rylan » Sat May 26, 2001 5:53 pm

Yeah, used to be fido a long time ago.. hehehe Image

'norelacri' is blindness
'abrazak' is armor
'yprr pzar' is full heal (may have gotten the yprr wrong, but its close to that).

I'll have to check my list for the rest Image

[This message has been edited by rylan (edited 05-26-2001).]
Tasan
Sojourner
Posts: 1710
Joined: Fri Mar 30, 2001 6:01 am
Location: Fridley, Mn USA
Contact:

Postby Tasan » Sat May 26, 2001 9:03 pm

'paghz' - Haste
'quaregpuzre' - coldshield
'zuharuhl' - vitality
'zakezitauiunsog gxafe' - mordenkainen's magical sword
'ghaiz gtui' - stoneskin
'fah' - rot
'diesilla barh' - lightning bolt
'yerr' is full I'm pretty sure so:
'yerr pzar' is full heal
'pabraw' - harm
'wuijhz wzhzafg' - minute meteors
'sfahzqhuai' is protection: so
'sfahzqhuai yfaw aiuwarg' is prot from animals
'yazfuz yufz' - faerie fire
'judicandus' is cure: so
'judicandus dies' - cure light
'qpurr hajqp' - chill touch
'gpurrzraop' - shillelagh
'zabrahpdjatz' - earthquake
'dudasabru' is person: so
'gurunsoqz dudasabru' is silence person
'bzrhlig mosailla braae' - is Beltyn's Burning Blood
'judicandus nore' - cure blind
'mosailla paieg' - burning hands
...

Twyl
Silverast Rubicyn
Sojourner
Posts: 376
Joined: Wed Feb 07, 2001 6:01 am
Location: Long Branch, NJ

Postby Silverast Rubicyn » Tue May 29, 2001 5:08 am

Rofl last wipe I actually casted every single invoker spell for someone so they could do the subsitute thing, I just cant remember who it was, if I do Ill find out and make him post it here!
Alaindril
Sojourner
Posts: 13
Joined: Sat Mar 24, 2001 6:01 am
Location: Massachusetts, USA
Contact:

Postby Alaindril » Tue May 29, 2001 6:08 am

qarr diesilla - call lightning
qfszzuio eaaw - creeping doom
waaixzrr - moonwell
abrazak - armor
wuiaf qfzahui - minor creation
uiyzfia - inferno
yjrr pzar - full heal
yjrr pabraw - full harm
oahz - gate
candusraqahz - relocate
aqueghafw - acid storm
aque bragh - acid blast
wzxhxgfabraw (or something) - meteorswarm
yafqz wuggurz - force missiles (I think)
brakuio bzaw - blazing beam
gfijal - sunray
babratgtui - barkskin
hiqahz abyzqh - locate object
qraufzalaiqz - clairvoyance
oculoinfra uizuguburuhl - detect invisibility
oculoinfra waouq - detect magic
oculoinfra oaae - detect good
uizuguburuhl - invisibility
candusgjfcandusqh - resurrect
ghixlacri - I think slowness, but not sure
yrl - fly
rzzuhahz - levitate
qaze ay qare - cone of cold
... and so on. it's scary how much of this I remember, but it's scarier still how much I once knew. :P
Tzat
Sojourner
Posts: 115
Joined: Fri Apr 20, 2001 5:01 am
Location: Kingston, Ontario, Canada
Contact:

Postby Tzat » Tue May 29, 2001 5:26 pm

Thats from memory!?
Xarrus
Sojourner
Posts: 2
Joined: Tue May 29, 2001 5:01 am
Location: Indiana, USA

Postby Xarrus » Tue May 29, 2001 6:16 pm

Here's the translation table of how spell-"words" are generated. If you're good with triggers, you can replace mysterious spell-word with the actual name of the spells on the fly Image

(This is lifted from a stock codebase, sojourn may have added some things, but it should be very close to correct for almost all spells.) The first field is the part of the word in the actual spellname, the second field is the replacement that gets said if you fail the spellknowledge check


static const struct syl_type syl_table[] =
{
{ " ", " " },
{ "ar", "abra" },
{ "au", "kada" },
{ "bless", "fido" },
{ "blind", "nose" },
{ "bur", "mosa" },
{ "cu", "judi" },
{ "de", "oculo" },
{ "en", "unso" },
{ "light", "dies" },
{ "lo", "hi" },
{ "mor", "zak" },
{ "move", "sido" },
{ "ness", "lacri" },
{ "ning", "illa" },
{ "per", "duda" },
{ "ra", "gru" },
{ "fresh", "ima" },
{ "re", "candus" },
{ "son", "sabru" },
{ "tect", "infra" },
{ "tri", "cula" },
{ "ven", "nofo" },
{ "a", "a" }, { "b", "b" }, { "c", "q" }, { "d", "e" },
{ "e", "z" }, { "f", "y" }, { "g", "o" }, { "h", "p" },
{ "i", "u" }, { "j", "y" }, { "k", "t" }, { "l", "r" },
{ "m", "w" }, { "n", "i" }, { "o", "a" }, { "p", "s" },
{ "q", "d" }, { "r", "f" }, { "s", "g" }, { "t", "h" },
{ "u", "j" }, { "v", "z" }, { "w", "x" }, { "x", "n" },
{ "y", "l" }, { "z", "k" },
{ "", "" }
};

------------------
-- Loves to play with dead things!
Alaindril
Sojourner
Posts: 13
Joined: Sat Mar 24, 2001 6:01 am
Location: Massachusetts, USA
Contact:

Postby Alaindril » Tue May 29, 2001 7:17 pm

Yes, sadly, that's from memory. :P
Kelsiria
Sojourner
Posts: 69
Joined: Sat Mar 31, 2001 6:01 am
Location: Dallas, TX
Contact:

Postby Kelsiria » Tue May 29, 2001 7:20 pm

yrl, thats my favorite, I just love saying that, yrl, yrl!


Okay, think I been working at my job a bit too long... and for any of you who don't know, I work in a mental hospital! *cackle*

Yrl me!!

Kelsi

Return to “MUD Client Help”

Who is online

Users browsing this forum: No registered users and 12 guests