This is what I was talking about
If I press 1, the rotation pauses, with ALT+X the botbase pauses. Tried with raidbot & tyrael, same behavior.
If we look the code in YBMoP_BT_HotKeyManager.cs, we see a "pause rotation" coded in it
	
	
	
		Code:
	
	
		Hotkeys.RegisterHotkey("PRPause", () =>
                            {
                                IsPaused = !IsPaused;
                                if (YBSettingsF.Instance.EnableWoWChatOutput)
                                    Lua.DoString(IsPaused
                                                     ? @"print('Rotation \124cFFE61515 Paused!')"
                                                     : @"print('Rotation \124cFF15E61C Resumed!')");
                            }, YBSettingsF.Instance.PauseKeyChoice, Keys.Menu);
	 
 
Below in the code we see "cooldown, aoe, special" which we can configure with a hotkey via GUI, but not for "PRPause"
Edit: tested with lazyraider, not working this "pause rotation"... So... Is it a problem of raidbot&tyrael?
Edit 2: stopped the bot, and started again (with lazyraider at botbase), with 1 pressed it pauses/unpauses rotation :SSS what the heck? dont understand it anymore