19 lines
633 B
Plaintext
19 lines
633 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName take_rune4
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 9/30/2002 9:59:04 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
// Remove items from the player's inventory
|
|
object oItemToTake;
|
|
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "RuneoftheFourCircles");
|
|
if(GetIsObjectValid(oItemToTake) != 0)
|
|
ActionPauseConversation();
|
|
ActionTakeItem(oItemToTake, GetPCSpeaker());
|
|
ActionResumeConversation();
|
|
}
|