healing for children quest in VoDT

Error message

Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /var/www/pied-piper.ermarian.net/includes/common.inc).
AuthorTopic: healing for children quest in VoDT
By Committee
Member # 4233
Profile #0
I just completed VoDT (even managed that vampire!) but the one quest I couldn't figure out was finding something to heal the children in M____ town.

Can anyone help me? Thanks!
Posts: 2242 | Registered: Saturday, April 10 2004 07:00
Shock Trooper
Member # 1444
Profile #1
I'm not entirely sure, but I think they want *cough* the healing scepter*/cough*.
Posts: 250 | Registered: Saturday, July 6 2002 07:00
Law Bringer
Member # 4153
Profile Homepage #2
Yeah, you need the scepter. It's in the Apothecary of the School of Magery, and you need to pass through quite a few secret doors to find the stupid thing.

By the way, does it actually do anything? I mean, it's visible in your inventory, and you can use it once a day. It gives you some meaningless message when you use it, and I didn't notice any difference in my party.

--------------------
Gamble with Gaea, and she eats your dice.

I hate undead. I really, really, really, really hate undead. With a passion.
Posts: 4130 | Registered: Friday, March 26 2004 08:00
Shock Trooper
Member # 1444
Profile #3
Looking at the code (note: not the entire code for it, check state 18 in the vodt scenario script.):

i = 0;
play_sound(60); // pay healing sound
while (i < 6) { // loop through the 6 party mambers
if (char_ok(i)) { // heal character is alive
set_char_status(i,0,-10,1,0); // heal 4 nasty effects
set_char_status(i,7,-10,1,0);
set_char_status(i,12,-10,1,0);
set_char_status(i,13,-10,1,0);
}
i = i + 1;
}
break;
It heals you. I suppose you weren't ill at the time then.

[ Sunday, April 11, 2004 07:14: Message edited by: Ninjutsu ]
Posts: 250 | Registered: Saturday, July 6 2002 07:00
Law Bringer
Member # 4153
Profile Homepage #4
Ok then, that would explain it. I was looking for a quick HP restore at the time.

--------------------
Gamble with Gaea, and she eats your dice.

I hate undead. I really, really, really, really hate undead. With a passion.
Posts: 4130 | Registered: Friday, March 26 2004 08:00
By Committee
Member # 4233
Profile #5
Hey thanks!
Posts: 2242 | Registered: Saturday, April 10 2004 07:00