Parse error?
#21
Posted 21 July 2004 - 01:41 AM
It looks like it should be an area script for AR0406?
You probably could have an area script iof that naming scheme, though AR0406 already has a script (AR0406.bcs, conveniently), you would need to append your snippet to that.
#22
Posted 21 July 2004 - 02:59 AM
It's most likely (it should be) extending the already existing area-script.What is the e#ar0406.bcs supposed to do?
It looks like it should be an area script for AR0406?
You probably could have an area script iof that naming scheme, though AR0406 already has a script (AR0406.bcs, conveniently), you would need to append your snippet to that.
That's why I asked to post the .tp2, as well as the script, in case the extending in the install is the failing link.
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner
#23
Posted 21 July 2004 - 04:45 PM
Attached Files
#24
Posted 21 July 2004 - 04:56 PM
I quote my reply from that topic, but changing the filenames to yours:
Your problem is that you're compile-ing and extending two diffrent scripts.
When you compile something, the compiled version is located in the override.
So, the:COMPILE ~VlartheNPC\e#ar0406.baf~ USING ~~will result in e#ar0406.bcs being in the override.
So when you're trying to extend the AR00406.bcs with:EXTEND_BOTTOM ~AR0406.bcs~ ~VlartheNPC\e#ar0406.bcs~you extend it with a non-existant script, since the script you're trying to extend with isn't located in the VlartheNPC-folder.
You don't even have to do the compile-ing if you're going to extend another script with it. Just do:EXTEND_BOTTOM ~AR0406.bcs~ ~VlartheNPC\e#ar0406.baf~That' it, if you aren't using a .tra for the script, which you don't.
Alternatively, you could:COMPILE ~VlartheNPC\e#ar0406.baf~ USING ~~ EXTEND_BOTTOM ~Ar0406.bcs~ ~override\e#ar0406.bcs~
Edited by SConrad, 21 July 2004 - 04:56 PM.
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner
#25
Posted 21 July 2004 - 05:05 PM
#26
Posted 22 July 2004 - 01:03 AM
SConrad I think I you. Man you the best.
You're welcome.
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner