Available since Version 1.18.
Fail the player if they collect a wrench.
Examples
MFK
Lua
AddCondition("collectwrench");
// Optional: Specify the amount of wrenches they're allowed to collect. Defaults to 1.
SetCondTotal(2);
CloseCondition();Game.AddCondition("collectwrench")
-- Optional: Specify the amount of wrenches they're allowed to collect. Defaults to 1.
Game.SetCondTotal(2)
Game.CloseCondition()