PWE_PRC8/_module/nss/takestaffstars.nss

19 lines
637 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
//::///////////////////////////////////////////////
//:: FileName takestaffstars
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/9/2002 3:28:55 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "StaffofStars");
if(GetIsObjectValid(oItemToTake) != 0)
ActionPauseConversation();
ActionTakeItem(oItemToTake, GetPCSpeaker());
ActionResumeConversation();
}