Fixed incompatibility method of events cancellation. In API files (verlihub.lua, ptokax04.lua, rushub.lua, eximius.lua) ADDED constants: BreakActions_false, BreakActions_true In the file Ekzekutor.lua: code: return 1 CHANGED to: return BreakActions_true code: return 0 CHANGED to: return BreakActions_false In the file verlihub.lua: String 282: if CurrentTickCount < TimerCount then return 0 end CHANGED to: if CurrentTickCount < TimerCount then return BreakActions_true end In the strings 268, 289, 327, 362, 371: code: return 0 CHANGED to: return BreakActions_false In the strings 363, 373: code: return 1 CHANGED to: return BreakActions_true