Aantioch_Infernum/_module/nss/patchnoattack.nss
Jaysyn904 15c0c0da79 Installed NESS 4.1.9
Installed NESS 4.1.9.  Tweaked main city.  Full compile.
2023-08-09 07:17:50 -04:00

21 lines
525 B
Plaintext

//::///////////////////////////////////////////////
//:: patchnoattack
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Derrick's script to make combat dummies not attack
you.
*/
//:://////////////////////////////////////////////
//:: Created By:
//:: Created On:
//:://////////////////////////////////////////////
void main()
{
object oPC = GetLastAttacker();
SetIsTemporaryFriend(oPC,OBJECT_SELF,FALSE,0.001);
DelayCommand(0.001,SetIsTemporaryEnemy(oPC));
}