19 lines
629 B
Plaintext
19 lines
629 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName takealptoken
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 10/9/2002 4:44:21 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
// Remove items from the player's inventory
|
|
object oItemToTake;
|
|
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "AlpayssesToken");
|
|
if(GetIsObjectValid(oItemToTake) != 0)
|
|
ActionPauseConversation();
|
|
ActionTakeItem(oItemToTake, GetPCSpeaker());
|
|
ActionResumeConversation();
|
|
}
|