Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

21 lines
513 B
Plaintext

//Goes OnPerceived of an NPC
void main()
{
object oPC = GetLastPerceived();
if (!GetIsPC(oPC)) return;
if (!GetLastPerceptionSeen()) return;
if (GetItemPossessedBy(oPC, "Gessacherring")== OBJECT_INVALID) //Change "Your Item Tag" to the tag of the item being checked for.
return;
object oTarget;
oTarget = GetObjectByTag("PC"); //Change "Hostile" to the faction you want to change reputations with.
AdjustReputation(oPC, oTarget, -100); //Change -100 to whatever amount you want reputation to change.
}