Help me write a script?

Post » Tue Jun 19, 2012 1:01 am

I want to write a script and add it to a certain quest so that when the player is in outside during the day all civil factions will attack them on sight.

Basically Ive created a new Faction and I want the player added to it during the day and removed form it during the night while on a specific quest.
User avatar
Eduardo Rosas
 
Posts: 3381
Joined: Thu Oct 18, 2007 3:15 pm

Post » Tue Jun 19, 2012 2:40 am

You could probably do something like Game.GetPlayer().SetAttackActorOnSight()

If you drop that into an update loop that checks for time of day and whether or not the player is indoors, this shouldn't be too difficult.
User avatar
Becky Cox
 
Posts: 3389
Joined: Thu Jun 22, 2006 8:38 am

Post » Tue Jun 19, 2012 9:06 am

You could probably do something like Game.GetPlayer().SetAttackActorOnSight()

If you drop that into an update loop that checks for time of day and whether or not the player is indoors, this shouldn't be too difficult.

Ah okay a loop. Like a While loop? I had forgotten about that.



P.S. Nice Manson quote.
User avatar
Christina Trayler
 
Posts: 3434
Joined: Tue Nov 07, 2006 3:27 am

Post » Tue Jun 19, 2012 5:29 am

lol, I was listening to it all morning today

I made a script in my mod to inflict sun damage on my poor vampires. What I did was, I added an alias to the main quest and linked it to the player. Then I attached a script that did this:

Event OnLocationChange(Location akOldLoc, Location akNewLoc)	 RegisterForUpdate(1)EndEventEvent OnUpdate()	 if (Game.GetPlayer().IsInInterior())			UnregisterForUpdate()	 else		  if (TVMMainQuest.Hour() >= 5) && (TVMMainQuest.Hour() < 19)			  Game.GetPlayer().DamageAV("Health", 20)		  endif	 endifEndEvent

If you use that as a starting framework, you should be good to go :smile:

edit: omfg the formatting in that block is terrible. sorry, tried to clean it up: epic fail.
User avatar
Jesus Sanchez
 
Posts: 3455
Joined: Sun Oct 21, 2007 11:15 am

Post » Mon Jun 18, 2012 11:37 pm

This helped a lot. Thanks a ton. You're a Yoda vampire.
User avatar
Pete Schmitzer
 
Posts: 3387
Joined: Fri Sep 14, 2007 8:20 am


Return to V - Skyrim