Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2022-10-07 14:20:31 -04:00
parent 0bbbd2678a
commit 128e7e59a4
7060 changed files with 4955665 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//:://////////////////////////////////////////////
//:: Created By: WaltG
//:: Created On: 6/27/02
//:://////////////////////////////////////////////
void main()
{
location lFire = GetLocation(OBJECT_SELF);
// adjust radius size based on fire effect size
float fRad = 1.5;
object oVictum = GetFirstObjectInShape(SHAPE_SPHERE,fRad,lFire);
while(oVictum != OBJECT_INVALID)
{
// create a random amount of damage
effect eDamage =EffectDamage(d4(2),DAMAGE_TYPE_FIRE);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDamage, oVictum);
oVictum = GetNextObjectInShape( SHAPE_SPHERE,fRad,lFire);
}
}