HiddenTradition_PRC8/_module/nss/tt_crus_hostile.nss
2024-06-20 15:47:42 -04:00

26 lines
434 B
Plaintext

void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
object oCrusader = GetNearestObjectByTag("ct_KerakGuard");
/*
//Checks if player is allied to this faction already, if so, leave alone
int iTeam =(GetLocalInt(oPC, "RedTeam"));
//if (iTeam = 1)
// {
return;
// }
*/
//Sets hostile to local faction
AdjustReputation(oPC, oCrusader, -95);
}