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.
8 lines
410 B
Plaintext
8 lines
410 B
Plaintext
void main()
|
|
{
|
|
AssignCommand(GetObjectByTag("px_halflingbone"),ActionSpeakString("Master! NO! I will never again touch the lever! MAAAAASTER! Don't LEAVE ME HERE TO DIE!"));
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_IMP_UNSUMMON),OBJECT_SELF,1.0);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_DUR_PROTECTION_GOOD_MAJOR),OBJECT_SELF,1.0);
|
|
DestroyObject(OBJECT_SELF);
|
|
}
|