When I play an existing game or start a new game it has this big long string that says:
Item d25c5004 Event(ship name here): No Binding for symbol: theObj ### (objSetObjRefData g Playership "WE_ShipHook" the obj) ###
It just keeps popping up as I am flying around.
It just started happening and I found those numbers in the Randomize Weapons part of Weapons Extended 3.
This is in the XM file that has it in it.
<!ENTITY itDifficultySelector "0xD25C5004">
I have used WE3 without problems for awhile now. Recently got a few new mods but how do I tell which one is interfering with it without playing the guessing game? Or is it a conflict w\ another mod at all?
Getting ingame error from WeaponsExtended3 RandomizeWeapons!
- Arisaya
- Fleet Admiral
- Posts: 5535
- Joined: Tue Feb 05, 2008 1:10 am
- Location: At the VSS Shipyards in the frontier, designing new ships.
it appears to be a script error. I think from the randomizer's scripts....
Maybe it just doesn't like one ship or ship type.
Maybe it just doesn't like one ship or ship type.
(shpOrder gPlayership 'barrelRoll)
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
- alterecco
- Fleet Officer
- Posts: 1658
- Joined: Wed Jan 14, 2009 3:08 am
- Location: Previously enslaved by the Iocrym
If you have used it for a while without issues it is most likely because of the mods you added. Unfortunately trial and error is the only way to find out which one it is.BlakeG228 wrote:I have used WE3 without problems for awhile now. Recently got a few new mods but how do I tell which one is interfering with it without playing the guessing game? Or is it a conflict w\ another mod at all?
- alterecco
- Fleet Officer
- Posts: 1658
- Joined: Wed Jan 14, 2009 3:08 am
- Location: Previously enslaved by the Iocrym
The item with the unid d25c5004 has an event that contains some code. This code seems to use a variable 'theObj' which has not been bound (it has not been given a value)BlakeG228 wrote: Item d25c5004 Event(ship name here): No Binding for symbol: theObj ### (objSetObjRefData g Playership "WE_ShipHook" the obj) ###
The 'objSetObjRefData' line is the line that is throwing the error. The formatting of the line you posted is wrong, it should read:
(objSetObjRefData gPlayership "WE_ShipHook" theobj)
(Note the removal of spaces). I suppose your copy paste messed up somehow
- Arisaya
- Fleet Admiral
- Posts: 5535
- Joined: Tue Feb 05, 2008 1:10 am
- Location: At the VSS Shipyards in the frontier, designing new ships.

(shpOrder gPlayership 'barrelRoll)
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
- digdug
- Fleet Admiral
- Posts: 2620
- Joined: Mon Oct 29, 2007 9:23 pm
- Location: Decoding hieroglyphics on Tan-Ru-Dorem
I'm using objSetObjRefData to pass the spaceObj to be randomized from the main randomizer extension to other XMLs of WE3.
In particular I think that the infinite fuel mod is not working in 1.02
Moreover the hacky WE_ShipHook that I was using has been removed from the new version, so that the infinite fuel mod on xelerus won't work at all.
As a good news we now have modules for extensions in 1.03, so I can rewrite the mod in a different (and better) way.
In particular I think that the infinite fuel mod is not working in 1.02
Moreover the hacky WE_ShipHook that I was using has been removed from the new version, so that the infinite fuel mod on xelerus won't work at all.
As a good news we now have modules for extensions in 1.03, so I can rewrite the mod in a different (and better) way.
Similar error, I suppose... But different error message. Game always runs fine but now, trying out the Randomize Weapons feature of WE3 again, this happened:
Happened right as a hammerhead ship was appearing on-screen, apparently.
Code: Select all
program state: updating object behavior
obj class: CShip
obj name: Hammerhead-class gunship
obj pointer: 29a3650
CStandardShipAI
Order: 1
m_State: 2
m_pDest: none
m_pTarget: 29654b8 Praetorian-class missile ship (CShip)
m_pNavPath: none
game state: in game
Please contact [email protected] with a copy of Debug.log. We are sorry for the inconvenience.
08/29/2010 18:08:12 Unable to continue due to program error.
program state: animating
Please contact [email protected] with a copy of Debug.log and your save file. We are sorry for the inconvenience.
08/29/2010 18:08:23 End logging session
- Arisaya
- Fleet Admiral
- Posts: 5535
- Joined: Tue Feb 05, 2008 1:10 am
- Location: At the VSS Shipyards in the frontier, designing new ships.
Try it on 1.03 and see if you can reproduce the crash.
(shpOrder gPlayership 'barrelRoll)
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
I think it has something to do with changing a ship's weapon (or perhaps it's other devices), I get those with UGW sometimes, always after messing with equipment. (saving and restarting the game prevents it)
The ship goes to fire, and for some reason just crashes the game, like it's trying to shoot with its shield or something.
With the old UGW when I told my wingmen to fire in formation after changing weapons it would consistently crash the game the moment they start to shoot.
The ship goes to fire, and for some reason just crashes the game, like it's trying to shoot with its shield or something.
With the old UGW when I told my wingmen to fire in formation after changing weapons it would consistently crash the game the moment they start to shoot.
- digdug
- Fleet Admiral
- Posts: 2620
- Joined: Mon Oct 29, 2007 9:23 pm
- Location: Decoding hieroglyphics on Tan-Ru-Dorem
yeah, I found that kind of error was caused when you install a weapon.I think it has something to do with changing a ship's weapon (or perhaps it's other devices), I get those with UGW sometimes, always after messing with equipment. (saving and restarting the game prevents it)
I thought that I removed that problem.
I have to look into the hammerhead class and see, I'll spawn 1000 or so and check if I get any crashes.