So I run a furien server. I made multiple c4s available to be bought and I'm stuck now because if they're 2 bombs planted, if any of them gets defused the round ends.
PHP Code:
public bomb_defused(id)
{
g_plantedbombs--
if(g_plantedbombs>0)
return PLUGIN_HANDLED
return PLUGIN_CONTINUE
}
obviously doesn't work, but I need a simple crude solution to block round end on bomb defusal.
I've first tried looking at infinite round, but couldn't understand anything. The plugin is so complex and even tho I could use it by setting it to only block def, I still need the bomb to be defused, but only when it's the last one planted.
I've also found a non orpheu way also made by connor but he mentioned it being unefficient so much I'm not scared to use it(grenade think)
I can't understand anything from oprheu so if someone could be kind enough to write a snippet for me to block it, it would be great. Thanks a lot.
__________________