Post your script so we can see where it might be going wrong.
I'm sorry, I didn't mean my script doesn't work, I meant it literally does not run. I think that:
scn myOwnSillyScript
begin GameMode
message " I have a crappy PC"
END
Should print a permanent "I have a crappy PC" on my screen. lol
but it doesn't.
I can't figure out why....I'm guessing I have to "activate the activator"
Here is the script anyways:
scn XXXActivatorScript
float NewPos
ref Act
float timer
Begin GameMode
message "Script is running"
Set act to GetSelf
set timer to timer + GetSecondsPassed
if timer > 3
Set NewPos to Player.GetPos Z - 1000
act.SetPos Z NewPos
set timer to 0
endif
END