IsPlayerMovingIntoNewSpace

From the Oblivion ConstructionSet Wiki
Revision as of 19:55, 15 February 2006 by imported>Maturin
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Returns 1 if the player is in the process of moving into a new space, i.e. fast traveling or moving through a load door.


The use of this function is a bit arcane, but you probably want to put it on any follow package which is conditionalized by the player's location. Say you have an NPC whose follow package on the player is conditionalized to not go into interiors or outside of Skingrad. Trouble is, followers get moved before the player arrives, so they don't reevaluate that the target is in an interior or outside of Skingrad until they and the player are already there -- so you'd get the NPC fast traveling with you, and then walking all the way back to Skingrad from whereever you happened to go.


This function returns true when the player is in the middle of loading into a new cell or fast travelling -- so if you put


	IsPlayerMovingIntoNewSpace == 0


as a condition on the NPC's follow package, he reevaluates during the load and won't follow the player outside of Skingrad or into interiors.