Changed folder name.

Changed folder name.
This commit is contained in:
Jaysyn904
2022-10-07 21:08:37 -04:00
parent 1c33c2843e
commit 8d97886c3f
7060 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
void main()
{
object a = GetEnteringObject();
if (GetIsPC(a) || (GetIsDM(a))){
if (GetLocalInt(GetModule(), "hellfog") != 2){
location hellfog1 = GetLocation(GetWaypointByTag("hellfog1"));
location hellfog2 = GetLocation(GetWaypointByTag("hellfog2"));
ApplyEffectAtLocation( DURATION_TYPE_PERMANENT, EffectAreaOfEffect(AOE_PER_FOGFIRE, "hellfog"),hellfog1);
ApplyEffectAtLocation( DURATION_TYPE_PERMANENT, EffectAreaOfEffect(AOE_PER_FOGFIRE, "hellfog"),hellfog2);
DelayCommand(1.0, SetLocalInt(GetModule(), "hellfog", 2));
} }
}