On the GECK tool bar there is a cube with a letter "T" in it. Click it to make a new trigger. Then move your mouse onto some surface in the render window and leftt-click-drag-release to make the horizontal axis, then repeat to make the vertical. When you are done, you should see a pink box. If you click on the box, you will see 3 "Gizmos" one for each axis in 3-D (Blue, Red & Green). If you click and drag the gizmo arrows, you can resize the cube. If you click and drag elsewhere you can move the whole cube.
Holy christ. o.O This is the most useful thing I have ever learned about the GECK. I cannot begin to thank you enough.
HOWEVER, upon creating a new trigger box and attaching my script to it, it still doesn't work when tested out. At this point I'm almost certain it's something wrong with the script. I'll post it in text form here.
ScriptName CG04HannonEnterTriggerSCRIPT
short doOnce
begin onTriggerEnter player
if GetQuestRunning CG04 == 1 && doOnce == 0
if GetDead CG04Vault101Security01REF == 0
CG04Vault101Security01REF.moveto XMarkerHeadingVault101a01
set doOnce to 1
endif
endif
end
There must be something I've done wrong here.
... Wait....
:(
Okay, so I checked in the object window, and Hannon is listed as "CG04Vault101Security01", not "CG04Vault101Security01
REF." However, when I double-clicked on him before to *check* his ID, the "-REF" ending *was* present. Furthermore, when I try to remove the "-REF" ending from the script, it says it's invalid and refuses to save it. So even if his actual ID, for use in scripts, does *not* have a "-REF" on it, it won't let me use it.
EDIT: So, it let me use the ID *without* the "-REF" in the condition line ("if GetDead CG04Vault101Security01 == 0"), but it refuses to let me save the script if the "-REF" is missing from the command line ("CG04Vault101Security01REF.moveto XMarkerHeadingVault101a01"). Either way, though, it still doesn't work when tested out.
EDIT II: Actually, the ID without the "-REF" ending is his *base form* ID, whereas the ID *with* it is his specific reference ID. So I guess I have to include the "-REF". So I'm not thinking that's the issue anymore. What could it be?!