public void botSetPathMap(string bot, string pathMap, int x, int y, int cornerstoneX, int cornerstoneY) { IBotManager manager = World.RequestModuleInterface <IBotManager> (); if (manager != null) { manager.ReadMap(UUID.Parse(bot), pathMap, x, y, cornerstoneX, cornerstoneY); } }