loading an AI packag on a NPC on the fly

Post » Fri May 13, 2011 9:39 am

Is there a function to load an AI package on a NPC on the fly??

IE I will use the imaginary function "loadPackage " to illustrate my question.

scn xxxx

begin scripteffectStart

loadPackage (escort, 60,x,y); // where escort is the package, 60 is the duration and x,y are optional and mean the coordinates for the location.

//alternatively
set timer to timer+ scriptEffectElapsedSeconds
if (timer > 25)
unload () ; //or anything that removes the package
endif;

end;

IF not, is there any other way I can achieve this??


Thank you. :)
User avatar
Marcus Jordan
 
Posts: 3474
Joined: Fri Jun 29, 2007 1:16 am

Post » Fri May 13, 2011 7:37 am

http://cs.elderscrolls.com/constwiki/index.php/AddScriptPackage sets an existing AI package on the actor.

http://cs.elderscrolls.com/constwiki/index.php/Obse has functions to change package attributes on the fly.
User avatar
Jhenna lee Lizama
 
Posts: 3344
Joined: Wed Jun 06, 2007 5:39 am

Post » Fri May 13, 2011 11:01 am

http://cs.elderscrolls.com/constwiki/index.php/AddScriptPackage sets an existing AI package on the actor.

http://cs.elderscrolls.com/constwiki/index.php/Obse has functions to change package attributes on the fly.




addScriptPackage and removeScriptPackage pretty much solve every problem I have.


Thank you so much :)
User avatar
Quick Draw
 
Posts: 3423
Joined: Sun Sep 30, 2007 4:56 am


Return to IV - Oblivion