Battledale_PRC8/_module/nss/jw_create_poisoa.nss

28 lines
908 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: FileName jw_create_acidar
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 06/09/2002 22:16:59
//:://////////////////////////////////////////////
void main()
{
ActionPauseConversation();
ActionCastFakeSpellAtObject(SPELL_PRISMATIC_SPRAY,OBJECT_SELF);
ActionResumeConversation();
// Give the speaker the items
CreateItemOnObject("nw_wammar007", GetPCSpeaker(), 100);
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "jw_logs");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "NW_IT_GEM010");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}