Fallout New Vegas
0 of 0

File information

Last updated

Original upload

Created by

Sagittarius22

Uploaded by

sagittarius22

Virus scan

Safe to use

About this mod

.

Permissions and credits
Donations
Same description as here: http://www.newvegasnexus.com/downloads/file.php?id=38133

Compatible with Unlimited Companion and other mods that allow you to hire multiple followers.

This very simple mod adds a script that makes your vanilla followers un-holster your weapon when yours is out.
Err, very simple indeed.
Should not conflict with anything.
Yeah it's a short description but I don't think I need to explain more ;-)

Sorry for my English, I speak French.

Script:

scn SAGFollowersReactionsScript2

Begin GameMode

If (Player.IsWeaponOut==1)
RoseofSharonCassidyREF.SetAlert 1
CraigBooneREF.SetAlert 1
VeronicaREF.SetAlert 1
LilyREF.SetAlert 1
RaulREF.SetAlert 1
ArcadeREF.SetAlert 1
RexREF.SetAlert 1
elseif (Player.IsWeaponOut==0)
RoseofSharonCassidyREF.SetAlert 0
CraigBooneREF.SetAlert 0
VeronicaREF.SetAlert 0
LilyREF.SetAlert 0
RaulREF.SetAlert 0
ArcadeREF.SetAlert 0
RexREF.SetAlert 0

endif
End