Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2023-09-25 18:13:22 -04:00
parent 684ef76c20
commit 499aba4eb3
5734 changed files with 4843758 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
void main()
{
/* object oPlayer = GetEnteringObject();
location lPlayer = GetCampaignLocation("PlayerData","Location",oPlayer);
if(GetIsObjectValid(GetAreaFromLocation(lPlayer)))
{
if(GetLocalInt(oPlayer,"BypassLocation") == 0)
{
AssignCommand(oPlayer,ActionDoCommand(JumpToLocation(lPlayer)));
}
}
if(GetLocalInt(oPlayer,"Dead")==1)
{
effect Deathstroke = EffectDeath(TRUE);
AssignCommand(oPlayer,ActionDoCommand(ApplyEffectToObject(DURATION_TYPE_INSTANT,Deathstroke,oPlayer)));
}
else if (GetCampaignInt("PlayerData","Dead",oPlayer) == 1)
{
effect Deathstroke = EffectDeath(TRUE);
AssignCommand(oPlayer,ActionDoCommand(ApplyEffectToObject(DURATION_TYPE_INSTANT,Deathstroke,oPlayer)));
} */
}