Initial Commit

Initial Commit.
This commit is contained in:
Jaysyn904
2025-09-14 15:40:46 -04:00
parent 7083b33d71
commit 1eefc84201
19230 changed files with 11539227 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
void main()
{
object oPC = GetPCSpeaker();
int nSpell = SPELL_FEAR;
SetLocalInt(OBJECT_SELF,"X2_SPECIAL_COMBAT_AI_SCRIPT_OK", 1);
AssignCommand(oPC, ActionCastFakeSpellAtObject(nSpell, OBJECT_SELF));
DecrementRemainingSpellUses(oPC, nSpell);
object oHide = GetItemPossessedBy(OBJECT_SELF, "q4_GolemArmor");
int nCurrentSlot = GetLocalInt(OBJECT_SELF, "CURRENT_SLOT");
SetLocalInt(GetModule(), "X2_GOLEM_SPELL_SLOT" + IntToString(nCurrentSlot), nSpell);
SetLocalInt(GetModule(), "X2_GOLEM_SPELL_SLOT_TARGET_TYPE" + IntToString(nCurrentSlot), 0);
}