Re: arg [message #37257 is a reply to message #37256] |
Sat, 26 January 2008 00:44 |
|
JohnDoe
Messages: 3007 Registered: October 2007
|
Retired
|
|
|
At least you have an idea of what's wrong. That is a sign of wrong object names.
When receiving items from a chest it will skip anything it doesn't recognize.
Example:
ContainerContents[0] "OBJECT_EXISTS";
ContainerContents[1] "OBJECT_DOESNT_EXIST";
ContainerContents[2] "OBJECT_EXISTS";
This would skip the second item.
Now the game expects that at least one item is coming out of the chest, so if you have:
ContainerContents[0] "OBJECT_DOESNT_EXIST";
ContainerContents[1] "OBJECT_DOESNT_EXIST";
ContainerContents[2] "OBJECT_DOESNT_EXIST";
It will just sit there waiting for an existing item to pop out, which never happens, effectively throwing the game in a holding pattern that you can't get out of.
What you can do is open FE and scroll down to objects and find the new items (any that are higher than 14760). Whatever is next to the number is what goes in the chest, for example, you should find
147## - OBJECT_EXPRESSION_PUKE_DUMMY.
[Updated on: Sat, 26 January 2008 00:44] Report message to a moderator
|
|
|