using a gameMode script on an activator

Post » Fri May 13, 2011 8:25 am

Im using a GameMode object script on an activator, and placed a reference on an interior cell.

The script is very simple, it only moves the activator on the z axis if a given condition is met. However, even though I set the script block to run on GameMode, it doesnt run when I start the game.

How come?
User avatar
Jodie Bardgett
 
Posts: 3491
Joined: Sat Jul 29, 2006 9:38 pm

Post » Fri May 13, 2011 7:47 pm

I'm using a GameMode object script on an activator, and placed a reference on an interior cell.

The script is very simple, it only moves the activator on the z axis if a given condition is met. However, even though I set the script block to run on GameMode, it doesn't run when I start the game.

How come?


Post your script so we can see where it might be going wrong.
User avatar
james kite
 
Posts: 3460
Joined: Sun Jul 22, 2007 8:52 am

Post » Fri May 13, 2011 7:48 pm

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
User avatar
Jesus Lopez
 
Posts: 3508
Joined: Thu Aug 16, 2007 10:16 pm

Post » Fri May 13, 2011 6:20 pm

Never Mind, I found the reason why it wasn't running; I needed to move the reference to the same cell the player was in, otherwise the script wouldn't run.

Thanks anyways.
User avatar
Pixie
 
Posts: 3430
Joined: Sat Oct 07, 2006 4:50 am

Post » Fri May 13, 2011 4:58 pm

Never Mind, I found the reason why it wasn't running; I needed to move the reference to the same cell the player was in, otherwise the script wouldn't run.

Thanks anyways.

search the cs wiki for heartbeating
User avatar
Teghan Harris
 
Posts: 3370
Joined: Mon Mar 05, 2007 1:31 pm


Return to IV - Oblivion