static O callBot(S botID, S method, O... args) { O bot = getBot(botID); if (bot == null) fail("Bot not found: " + botID + ", was calling: " + method + " from " + programID()); ret call(bot, method, args); }