Rune_PRC8/_module/nss/wdm_ar_onexit.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

29 lines
797 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// Dead and Wild Magic System - On Area Exit
// wdm_ar_onexit
// By Don Anderson
// dandersonru@msn.com
//
// Place this script in the Area On Exit Event to Restore Magic
//
////////////////////////////////////////////////////////////////////////////////
#include "wdm_inc"
void main()
{
object oPC = GetExitingObject();
if(GetIsDM(oPC) || GetIsDMPossessed(oPC)) return;
//Only run Dead or Wild Magic if Player Entered a Wild or Dead Area
int nWDMZone = GetCampaignInt("WDM","INWDMZONE",oPC);
if(nWDMZone == 1)
{
SetCampaignInt("WDM","INWDMZONE",0,oPC);
WDM_RestoreMagic(oPC);
//For Allegiance System Casting Control
SetLocalInt(oPC,"OAS_CANCAST",1);
}
}