18 lines
614 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName give_apple
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/22/2004 5:56:31 PM
//:://////////////////////////////////////////////
void main()
{
// Give the speaker the items
CreateItemOnObject("goldenapple", GetPCSpeaker(), 1);
ActionCastFakeSpellAtObject(SPELL_ICE_STORM,OBJECT_SELF);
DelayCommand(2.0,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_IMP_UNSUMMON),OBJECT_SELF));
DestroyObject(OBJECT_SELF,2.5);
}