Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
void BurningObject(object oTarget)
|
|
{
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_IMP_REDUCE_ABILITY_SCORE),oTarget);
|
|
DelayCommand(0.5,BurningObject(OBJECT_SELF));
|
|
}
|
|
|
|
void main()
|
|
{
|
|
DelayCommand(0.5,BurningObject(OBJECT_SELF));
|
|
}
|