humadalliance
Member
Alrighty,
I am getting a really strange error. I read this thread already, and unfortunately its slightly different then the problem that person had.
We added a few custom skills (Drive and Pilot) which are required for the datasets. To go along with those skills is a mechanic that when you select Drive or Pilot, it bootstraps several traits to go along with those skills for Vehicle Combat and Vehicle Defense. Until today, this was 100% working perfectly.
Here is the error I get:
Attempt to access non-live child pick 'skMSRDDriv' from script
Location: 'eval' script for Thing 'mMPSGGVCM' (Eval Script '#4') near line 2
That is followed by several other errors on line 5, and then again for the skMSRDPilt also on the same lines
Here is the code associated with those errors:
First | Priority: 450
I have no idea why it broke today, but otherwise has been working perfectly for weeks. The Mechanic works fine aside from throwing those errors, and when you add a rank to the Drive skill, it pulls up the GRCMPVehic with no problem and both Vehicle Combat and Vehicle Defense traits appear.
After extensive testing I discovered that all the others work perfectly. (IE the Profession: Driver, Sailor, and Pilot skills that have to be manually added) We run these same traits using Ride and Fly as well, but with Drive and Pilot because they are added in the MPMSRD source it doesn't seem to work right.
Please assist! Thank you in advance for your help!
- Joe
I am getting a really strange error. I read this thread already, and unfortunately its slightly different then the problem that person had.
We added a few custom skills (Drive and Pilot) which are required for the datasets. To go along with those skills is a mechanic that when you select Drive or Pilot, it bootstraps several traits to go along with those skills for Vehicle Combat and Vehicle Defense. Until today, this was 100% working perfectly.
Here is the error I get:
Attempt to access non-live child pick 'skMSRDDriv' from script
Location: 'eval' script for Thing 'mMPSGGVCM' (Eval Script '#4') near line 2
That is followed by several other errors on line 5, and then again for the skMSRDPilt also on the same lines
Here is the code associated with those errors:
First | Priority: 450
Code:
if (hero.tagis[source.MPMSRD] <> 0) then
if (hero.child[skMSRDDriv].field[skUser].value >= 1) then
perform hero.assign[Custom.GRCMPVehic]
elseif (hero.child[skMSRDDriv].field[skUser].value >= 1) then
perform hero.assign[Custom.GRCMPVehic]
endif
endif
I have no idea why it broke today, but otherwise has been working perfectly for weeks. The Mechanic works fine aside from throwing those errors, and when you add a rank to the Drive skill, it pulls up the GRCMPVehic with no problem and both Vehicle Combat and Vehicle Defense traits appear.
After extensive testing I discovered that all the others work perfectly. (IE the Profession: Driver, Sailor, and Pilot skills that have to be manually added) We run these same traits using Ride and Fly as well, but with Drive and Pilot because they are added in the MPMSRD source it doesn't seem to work right.
Please assist! Thank you in advance for your help!
- Joe