No, there are no scripts, that I am aware of assigned to the .cre-file. So far all that I have created for her is the tp2, the exe, the .d, the area.baf, portraits (hmm, this might be attached to it?), the NPC.cre. and the attk.baf (to instruct her to attack any enemy she sees)
The entire reason I'm asking the questions is that is you do have a script assigned to the character in any other slot than override, they get wiped when the
NPC joins the party.
attk.baf, you say. Where are you using that?
COPY ~MyMod/CRE/MyNPC.cre~ ~override~
//various sound assignments
WRITE_ASCII 0x280 #8 ~MyScript~ //I think that hex offset is right, but would someone be able to check?
0x280 is the deathvariable. #8 is not necessary unless you're overwriting another string, and should be placed after the string (~~).
Also,
WeiDU support certain constants, which makes it easier to remember than keeping all offsets in your head.
COPY ~MyMod/CRE/MyNPC.cre~ ~override~
WRITE_ASCII SCRIPT_OVERRIDE ~MyScript.bcs~ #8
Deathsangel.....I am very excited about being able to put it in the .d the way you just suggested. It just seems so very simple and straightforward!
Thank you very much for that.
That's one way to do it, but if you have a script, you should use that instead. Why? Because if you have a good script assigned to the
NPC, he or she will actually do more than just swing his sword - use potions, combat tactics and whatnot. If it's a mage, he will cast spells, and so on.
Note that it doesn't applies if your script only says Attack() - that's just the same thing. I'm talking about if you have a good script assigned to the creature.