Proposal : Do Not Press This Button
Add to the MCP, after the "ACTIVATE_FIRE" brackets:-
Enacted by Kevan, 9th Oct. +17 to Kevan.
if (keyword = "ACTIVATE_DETONATE" && inventory(self) contains product_object)
{
// Destroy product.
inventory(self) = inventory(self) - product_object
// Damage all Robots.
loop (robots)
{
power(loop_robot) = power(loop_robot) - 50;
}
// !!! Penalty
efficiency(self) = efficiency(self) - 3
}
Enacted by Kevan, 9th Oct. +17 to Kevan.
<< Home