Pocket Plane Group

BG2 Completed Mods => Unfinished Business => UB Workroom => Topic started by: SixOfSpades on March 25, 2006, 05:13:24 PM

Title: Summoning Book in Spellhold
Post by: SixOfSpades on March 25, 2006, 05:13:24 PM
I was browsing through the lesser-known spells in SK yesterday, and came upon the ones that the Summuning Book uses. Summon Kobold, Summon Spider, Summon Umber Hulk, Summon Beholder, etc.... and also Summon Golem, with a SPIN number that was consecutive with the others. Suggesting that there was supposed to be 1 more page in that book you had to turn before you got your rewards.
Title: Re: Summoning Book in Spellhold
Post by: Andyr on March 26, 2006, 06:42:51 AM
Interesting. Did you happen to see if the spell looked reasonable, and referenced a valid .CRE? Could be worth restoring.
Title: Re: Summoning Book in Spellhold
Post by: devSin on March 26, 2006, 09:09:53 AM
The spells aren't used. Look at the PPBOOK script.

It was supposed to be an adamantite golem. I restore locally with the following
Code: [Select]
IF
Clicked([])
Global("TOGGLE","AR1513",1)
Global("PAGE","AR1513",5)
THEN
RESPONSE #100
DisplayString(Myself,50657)
CreateVisualEffect("SPPLANAR",[2196.634])
Wait(2)
CreateCreature("GOLADA01",[2196.634],10)
IncrementGlobal("PAGE","AR1513",1)
SetGlobal("TOGGLE","AR1513",0)
END
but it requires updating other parts so PAGE goes up to 6+1.
Title: Re: Summoning Book in Spellhold
Post by: Andyr on March 27, 2006, 08:40:00 AM
I'll remember to have a look when next at my modding computer, thanks.