I'm trying to add an item in BG1 via a script. The trigger works, but I don't manage to add the item. I've tried with other items, and it doesn't work either. Could anybody explain me why ? I've heard that there is more actions in BG2 than in BG1, so CreateItem may not work, but I'm not sure it come from this. And if it's the cause, how could I add the item ?
Here is the script:
IF
Global("F#ClawExists","AR5102",0)
THEN
RESPONSE #100
ActionOverride("Container 1",CreateItem("F#CLAW",0,0,0))
SetGlobal("F#ClawExists","AR5102",1)
END