Basically a plugin that sets the window style to resize
tl;dr it mw3 server console go resize yay
Made it (in 5 minutes) because people were complaining @ http://www.itsmods.com/forum/Thread-hey-...nsole.html
tl;dr it mw3 server console go resize yay
Made it (in 5 minutes) because people were complaining @ http://www.itsmods.com/forum/Thread-hey-...nsole.html
CSHARP Code
- public class ServerResizer : CPlugin
- {
- #region Signatures
- [DllImport("user32.dll")]
- static extern int SetWindowLong(IntPtr hWnd, int nIndex, long dwNewLong);
- #endregion
-
- public unsafe override void OnServerLoad()
- {
- try
- {
- ServerPrint("MW3ServerResize by jariz");
- SetWindowLong(*(IntPtr*)0x5933A50, -16, 0x94CF0000L);
- }
- catch (Exception z) { ServerPrint("Failed: " + z.ToString()); }
- }
- }