Difference between revisions of "Talk:Activate"
imported>Tegid (Reference corruption on chained Activates?) |
imported>DragoonWraith (Kkulmann appears to be offering a lot of incorrect information...) |
||
Line 1: | Line 1: | ||
Is it just me, or is a ''lot'' of Kkuhlmann's information here wrong? Activate blocks are done when called, not later, correct?<br /> | |||
[[User:DragoonWraith|<span style="font-family: Oblivion, Daedric Runes; size=2;">D</span>ragoon <span style="font-family: Oblivion, Daedric Runes; size=2;">W</span>raith]] [[User_talk:DragoonWraith|<span style="font-family: Oblivion, Daedric Runes; size=2;">TALK</span>]] 10:54, 13 July 2007 (EDT) | |||
== Syntax Question == | |||
This page is unclear, does player.Activate doorID mean the player activates the door, or the door activates the player? | This page is unclear, does player.Activate doorID mean the player activates the door, or the door activates the player? | ||
Revision as of 09:54, 13 July 2007
Is it just me, or is a lot of Kkuhlmann's information here wrong? Activate blocks are done when called, not later, correct?
Dragoon Wraith TALK 10:54, 13 July 2007 (EDT)
Syntax Question
This page is unclear, does player.Activate doorID mean the player activates the door, or the door activates the player?
--Kkuhlmann 12:04, 6 April 2006 (EDT): What you wrote means the door is activating the player. If you want to simulate the player activating a door: DoorID.Activate player
Scripting Issues
--Mrflippy 12:59, 12 April 2006 (EDT) I've been having some issues with this command in scripts. Sometimes, "object.activate me, 1" just doesn't work. The OnActivate block in the script attached to object isn't run at all. Most of the activators I work with are dynamically created using PlaceAtMe. Is this the source of the problem?
--Tegid 13:37, 12 April 2006 (EDT) I too am having this problem. Is there some kind of time constraint on activation? What causes them to just not activate? If they are already inside their OnActivate block and someone calls Activate on them, what happens then?
--Kkuhlmann 14:01, 12 April 2006 (EDT): Some things to keep in mind which could be causing your issues:
- All "action" block types (OnActivate, OnEquip, OnAdd, etc.) work by setting a flag on the script when the action occurs. The next time the script runs, if the appropriate block flag is set, that block is executed, and the flag is reset (so it doesn't run it more than once for a single action).
- Object scripts only run if the object is in the currently loaded area -- where the player is. So calling Activate on something that isn't loaded will set the flag for that action, but won't actually trigger the script (it will trigger the next time the object's script is run). NPC scripts (on persistent NPCs) do run when they're not loaded, but only when their AI is updated, which can happen as infrequently as every 15 game minutes.
--Tegid 15:13, 12 April 2006 (EDT) So three questions.
- That reset happens when the OnActivate block starts or stops? (So if I send another activate before it is finished with its block, will it be cleared when its block ends and therefore never happen?)
- --Kkuhlmann 08:49, 14 April 2006 (EDT): Reset happens when the script is finished processing. So calling Activate on an object from within its own script won't work.
- As long as I've used PlaceAtMe to create this object, the second section shouldn't apply correct?
- Are script blocks atomic?
- --Kkuhlmann 08:49, 14 April 2006 (EDT): I don't know that I understand what you're asking. You CAN have more than one script block of the same type in a script -- since the flags are cleared at the end of the script, any number of blocks of the same type can exist in the script just fine. Why you'd want to do this, I don't know. But you could. If that's what you were asking.
- --Tegid 09:27, 14 April 2006 (EDT): By Atomic I mean, does the entire script block (or script) execute without interruption by another script, or can it be interrupted by another script mid-run and then come back and finish later?
--Tegid 00:40, 26 April 2006 (EDT) With MrFlippy's help, I believe I have found an issue with chained activations. If I have more than four objects which pass a single Reference down an activate chain, after the fourth pass, my reference is normally != to what it was when it started down the chain. (It does SOMETIMES make it to the 5th object). As an example.
scn Object1Script ref incoming begin OnActivate set incoming to GetActionRef if (incoming == SomePresetReferenceInAPersistentObject) Message "I am doing something cool in Object 1",1 endif Object2Ref.Activate incoming 1 end
if Object2Ref has a script that is similar but activates Object3Ref like so
scn Object2Script ref incoming begin OnActivate set incoming to GetActionRef if (incoming == SomePresetReferenceInAPersistentObject) Message "I am doing something cool in Object 2", 1 endif Object3Ref.Activate incoming 1 end
And so on down to Object5, object 5 will NOT execute the code inside its if statement. That equality will evaluate to false. Am I missing something, or is this a bug based on something you couldn't imagine us wanting to do?