20 lines
593 B
Plaintext
20 lines
593 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName end_samoflange
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 8/22/2002 7:03:19 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
// Remove items from the player's inventory
|
||
|
object oItemToTake;
|
||
|
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "stormbeetleeggs");
|
||
|
if(GetIsObjectValid(oItemToTake) != 0)
|
||
|
DestroyObject(oItemToTake);
|
||
|
SetLocalInt(GetPCSpeaker(),"lomil",2);
|
||
|
}
|