Jump to content


Alan M.C.

Member Since 30 Apr 2003
Offline Last Active Mar 08 2004 12:51 AM

Topics I've Started

Wild Surges?! Is there a table somewhere

10 May 2003 - 01:06 AM

First, does anybody know where is the file that rolls the wild surges?

Secondly, does anybody know how to implement a character's reaction to a wild surge occurence?
(Make a character react to let's say a roll on the wild surge table where lost all party gold or summon rabbits).

If someone is sure it's hardcoded, please also let me know.

Thanks,
Alan M.C.

Unregistered Spells and scripting

04 May 2003 - 10:12 PM

I need help on a tough one. I have a fighting script for an NPC MOD and some spells (Like Balth02.spl) does anyone knows how to integrate the spell "as is" (without renaming it first to the standard spclxxxx.spl or spwixxx.spl).

If I do the following script

IF
HaveSpell(Balth02)
THEN
RESPONSE #100
Spell(Myself,Balth02)
END

The script when compiled shows HaveSpell(0) Spell(Myself,0) and BGII hangs.

So far, I was renaming the spells and appending the spell.IDS, which works fine  but I'd really could do with having these odd names. I know most of the creature script use these names but I do not know how they do it!

Alan M.C.