Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

CancelCurrentCombatAction() ?

Page: 1 of 1
 Dashus
05-28-2007, 10:41 PM
#1
Is there a way to clear the current/about-to-happen action on the combat queue without wiping the entire thing with CancelCombat()?
 stoffe
05-29-2007, 6:41 AM
#2
Is there a way to clear the current/about-to-happen action on the combat queue without wiping the entire thing with CancelCombat()?

As far as I am aware there is no way to selectively manipulate the content of the action queue. To get rid of something from it you'll have to use ClearAllActions() which removes all queued-up actions. The CancelCombat() function brings them out of combat mode as well without the usual 10 second cooldown.

The scripting language is very limited in that regard. The only things you can do with the action queue from it, aside from issuing new actions and clearing, is to lock it down to prevent new actions being added, or check what the action currently being performed is.

(Trying to make a decent AI in the KOTOR/TSL NWscript is mostly a huge series of workarounds and ugly tricks. I can understand why Obsidian didn't bother much with it if they didn't have the time to expand the scripting language. :))
 Dashus
05-29-2007, 1:02 PM
#3
So there's not even a way to look at other actions in the queue other than the last in? I have no problem storing off, clearing and then rebuilding the action queue if that's possible.
 stoffe
05-29-2007, 2:02 PM
#4
So there's not even a way to look at other actions in the queue other than the last in? I have no problem storing off, clearing and then rebuilding the action queue if that's possible.

Unfortunately not, you can only see what the action that is currently being performed is. The only way I can think of around it (in a controlled environment) would be to keep a list of what actions should be performed and then issue them to the action queue one at a time when the prior action has finished executing. That way you'd only keep one action in the queue at any given time, and keep track of what should be performed elsewhere.

Since you can place custom functions on the action queue via ActionDoCommand() you could use that to run a script whenever the current action in the queue has finished executing.
 Dashus
05-29-2007, 5:34 PM
#5
Sadly I'd need to do this in a non-controlled environment where the user can specify actions on the queue, which I don't see a way to do...
 stoffe
05-29-2007, 5:42 PM
#6
Sadly I'd need to do this in a non-controlled environment where the user can specify actions on the queue, which I don't see a way to do...

That might cause complications when using workarounds, yes.

What is it you are trying to do? Remove player-assigned actions from the action queue? You can lock the action queue which should prevent the player from adding more actions to it if you need them to act on auto-pilot during some scene.
 Dashus
05-29-2007, 7:18 PM
#7
Ideally? Here's the scenario I'm trying to find a workaround for:
The player, controlling Bao-Dur, pauses, and assigns the following actions:
1) Attack force field
2) Do anything #1
3) Do anything #2
I'm trying to modify this so that in the UserDef OnCombatRoundEnd I look at the next action and if it's an attack against a forcefield (GetObjectType == ffield in genericdoors.2da), I clear that action and replace it with a walk to door and play shield breaker anim. However given that there is no way to clear the next action without wiping out 2 & 3 I am reticent to do so.
Page: 1 of 1