PWE_PRC8/_module/nss/sailtomurlok.nss

18 lines
649 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
//::///////////////////////////////////////////////
//:: FileName sailtomurlok
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/20/2002 12:58:32 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "TickettoMulrokIsland");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
AssignCommand(GetPCSpeaker(), JumpToLocation(GetLocation(GetObjectByTag ("mulrock_ship"))));
}