18 lines
608 B
Plaintext
18 lines
608 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName mithpowered
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 9/10/2004 11:17:02 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
// Set the variables
|
||
|
|
||
|
SetLocalInt(GetModule(), "MithPowered", GetLocalInt(GetModule(), "MithPowered") +1);
|
||
|
SetLocalInt(OBJECT_SELF, "StationOnce", 1);
|
||
|
object oItemToTake1;
|
||
|
oItemToTake1 = GetItemPossessedBy(GetPCSpeaker(), "PowerSupply");
|
||
|
DestroyObject(oItemToTake1);
|
||
|
}
|