Initial Commit

Initial Commit [v1.32PRC8]
This commit is contained in:
Jaysyn904
2025-04-03 13:38:45 -04:00
parent 1213977d8c
commit b464d8da05
6922 changed files with 6176025 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
#include "utl_i_sqluuid"
void main()
{
object oPC = GetPCSpeaker();
SQLocalsUUID_SetInt(oPC,"EvilPath",5);
SQLocalsUUID_SetInt(oPC,"EvilLevel",0);
SQLocalsUUID_SetInt(oPC,"Enemy",4);
object oGood;
oGood = GetObjectByTag("en3_good");
AdjustReputation(oPC,oGood,-100);
object oDefender;
oDefender = GetObjectByTag("en4_cityguard0_1");
AdjustReputation(oPC,oDefender,-100);
object oEvil;
oEvil = GetObjectByTag("en4_evil");
AdjustReputation(oPC,oEvil,50);
AdjustAlignment(oPC,ALIGNMENT_EVIL,20);
object oPartyMember = GetFirstFactionMember(oPC, TRUE);
while (GetIsObjectValid(oPartyMember) == TRUE)
{
if (SQLocalsUUID_GetInt(oPartyMember,"EvilPath") == 0)
SendMessageToPC(oPartyMember,GetName(oPC) + " has aligned himself with evil. Should you choose to follow him down this path you must align yourself with evil too.");
oPartyMember = GetNextFactionMember(oPC, TRUE);
}
}