Finished PRC8 integration

Finished PRC8 integration.  Moved creature abilities to top hak.  Setup tooling.  Created release archive
This commit is contained in:
Jaysyn904
2024-03-12 21:27:23 -04:00
parent 7b9e44ebbb
commit e5b3f6ad61
958 changed files with 1491 additions and 630 deletions

View File

@@ -1,8 +1,8 @@
// Wild magic spell-script:
// all spells are
// jw_nun_wild
#include "x2_inc_switches"
#include "prc_inc_spells"
// Checks whether to run wild magic or not. Returns TRUE if wildmagic does fire
// Else returns FALSE
@@ -20,8 +20,8 @@ int jw_check_wildmagic()
//SpeakString("You are not in a wild magic area");
return FALSE;
}
int nSpell = GetSpellId();
object oItem = GetSpellCastItem();
int nSpell = PRCGetSpellId();
object oItem = PRCGetSpellCastItem();
if(GetBaseItemType(oItem) == BASE_ITEM_POTIONS)
return FALSE;
if(nSpell == SPELL_RESURRECTION || nSpell == SPELL_RAISE_DEAD)