
void main()
{
    // Example: Change the faction of an NPC with the tag "myNPC" to Hostile
    object oNPC = OBJECT_SELF;
    ChangeToStandardFaction(oNPC, STANDARD_FACTION_HOSTILE);
}
