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
258 B
Plaintext
11 lines
258 B
Plaintext
void main()
|
|
{
|
|
if (GetLocalInt(OBJECT_SELF,"nDoors")!=2)
|
|
|
|
{
|
|
object oDoor=GetObjectByTag("jw_whispf2wellp");
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectDamage(10,DAMAGE_TYPE_MAGICAL,DAMAGE_POWER_PLUS_FIVE),oDoor);
|
|
SetLocalInt(OBJECT_SELF,"nDoors",2);
|
|
}
|
|
}
|