1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
public plugin_init() { new i=5; switch(i) { case 3: return false; case 5: { i = 6; return true; } default: { return true; } } }