PDA

View Full Version : Two questions related to Mercenaries (Dragonprime)


Kirara
05-22-2007, 02:02 AM
#1 Is there a reason why your mercenary doesn't start out the new day with his hit points being restored to full like the player does?

#2 I have taken the Dark Arts, and when I use the skill Skeleton Crew it creates Skeleton Warrior in my Companions area. If I go to the Mercenary Camp to heal my mercenary, it also lets me pay to heal my Skeleton Warrior, too. Is this accidental?

XChrisX
05-22-2007, 02:37 AM
#1 This is a balancing issue we should discuss... But you are right, it would be logical that they are healed as well.

#2 Yes, this is accidental and will be fixed.

Shiqra
07-07-2007, 02:19 PM
Another Mercenaries question:

When I go to the Grassy Field, I am fully healed and my mount fully restored, yet my mercenary seems to be completely immune to the wonderful powers of said Grassy Knoll. Would it not be logical that he too should benefit from the nap? Or does he sit guard while my horse eats and I snooze? If that is the case, then what is he guarding me from? Renegade Wyverns? The Grassy Knoll seems a safe haven for all. Just curious...

ThricebornPhoenix
07-08-2007, 06:20 AM
There are a lot of new features that old modules could benefit from. Write up the code, and I'm sure someone will be happy to add it ;)

Iori
10-17-2007, 10:24 PM
There are a lot of new features that old modules could benefit from. Write up the code, and I'm sure someone will be happy to add it ;)

Here ya go. Simply add this to the grassy field module to heal all healable companions the player has (make sure it is not enclosed by the mount check).
global $companions;
foreach ($companions as $name => $companion) {
if (isset($companion['cannotbehealed']) && $companion['cannotbehealed'] == true) continue;
if ($companion['hitpoints'] >= $companion['maxhitpoints']) continue;
$companions[$name]['hitpoints'] = $companion['maxhitpoints'];
}
Edit: Would work for newday too. However, I do loathe adding more stuff to execute on the newday screen.

flulkiz09
01-26-2010, 09:24 PM
I cant help with the answers but hope someone will be along that can help you deal with this.

mefEmesse
02-06-2010, 04:33 PM
Im pretty sure you cant. im sure the Galactica model went through all this a while ago.