Howdy guys, I am working on my pulp mod, and I've reached the first mission with the Phantom and Tarzan. They both have Private Army set up to provide them an animal sidekick. Phantom is working fine, but Tarzan is not. When a missions starts, Tarzan's sidekick doesn't spawn and I get an error message. Here is the relevant portion of the script.log:
Spoiler
initAttribsForChar: working on hero_1 (tarzan)
initAttribsForChar (tarzan): looking at attribute tough guy
initAttribsForChar (tarzan): looking at attribute acrobatic
execInitAttrib: init acrobatic attribute
on hero_1 of template custom_template_68 (tarzan)
initAttribsForChar (tarzan): looking at attribute wall climbing
initAttribsForChar (tarzan): looking at attribute ffqtracking
execInitAttrib: init ffqtracking attribute
on hero_1 of template custom_template_68 (tarzan)
initAttribsForChar (tarzan): looking at attribute privatearmy3
execInitAttrib: init privatearmy3 attribute
on hero_1 of template custom_template_68 (tarzan)
initprivatearmy: hero_1
execInitAttrib: ERROR in initialising attribute privatearmy3
Traceback (innermost last):
File "C:\Program Files\Irrational Games\Freedom Force vs The 3rd Reich\.\PulpAdventures\missions\scripts\ffx.py", line 930, in initAttribsEvent
initAttribsForChar(event.object,event.user)
File "C:\Program Files\Irrational Games\Freedom Force vs The 3rd Reich\.\PulpAdventures\missions\scripts\ffx.py", line 893, in initAttribsForChar
execInitAttrib(char, attribute, update)
File "C:\Program Files\Irrational Games\Freedom Force vs The 3rd Reich\.\PulpAdventures\missions\scripts\ffx.py", line 914, in execInitAttrib
execInitAttrib2(char, attribute, init)
File "C:\Program Files\Irrational Games\Freedom Force vs The 3rd Reich\.\PulpAdventures\missions\scripts\ffx.py", line 922, in execInitAttrib2
exec init
File "<string>", line 1, in ?
File "C:\Program Files\Irrational Games\Freedom Force vs The 3rd Reich\.\PulpAdventures\missions\scripts\ffx.py", line 9471, in initprivatearmy3
initprivatearmy(char,update,30000)
File "C:\Program Files\Irrational Games\Freedom Force vs The 3rd Reich\.\PulpAdventures\missions\scripts\ffx.py", line 9526, in initprivatearmy
AI_Animate(name,t)
RuntimeError: Object does not have an AI or does not exist - hero_1min0
Anyone know how I can fix this?
Tough to be sure on this one, but I would start the debugging by finding that AI_Animate line (9526) in your ffx.py and adding the following line right above it:
print 'initprivatearmy: name=%s, t=%s, getArmyPos(%s,%d)=%s' % (repr(name), repr(t), repr(char), count, getArmyPos(char,count))
Then see what your log says.
It may also be possible that there is an issue with the template in your private army list for that character. The debug output from above should help show that, if it's the issue.
Lastly, there was a somewhat rare IG bug in Get_ObjectPos(). I thought we had found a transparent workaround in FFX, but that may have been using an experimental version of the filterobjects DLL that was never released. <sigh> If the problem seems to "go away" randomly when adding print statements and so on, then this may be the culprit.