Post: MW3 Forcehost C#
03-31-2014, 08:12 AM #1
(adsbygoogle = window.adsbygoogle || []).push({});
CREDITS TO momo5502 for ForceHost code

Update: 2.50 Compatibility



Download: You must login or register to view this content.
Source Download: You must login or register to view this content.



Okay, a lot of people have told me they don't know how to do this or it's not working for them. This is how this works. You have to make the first numericupdown "0" and the second one the max amount of players you can HOST online. ex. mine is 4.
I put 0 for min amount of players NEEDED to start, and 4 as the max my connection can HOST.

You must login or register to view this content.

Made a tool, feel free to download:

You must login or register to view this content.
(rar) MD5: 52B8B6C60C9A7CE92EBD7FE29B94894A
(.exe) MD5: 76416D090BB6A0F1B2E5DCC0757688A6


old versions:

Working... No bugs:
You must login or register to view this content.
(.rar) MD5: DEAE6091EDF16C59D996B47ADF3219B0


Bug/beta versions.

*HAVE BUGS!*
V1.1: You must login or register to view this content.
(.rar) MD5: FE50D378DBBFC64C478323A995DC6A5B

You must login or register to view this content.
(.rar) MD5: 3A550D2EDA3FD717671A47E1750188E8


Source Download:
You must login or register to view this content.

Pictures:

You must login or register to view this content.

You must login or register to view this content.

You must login or register to view this content.

You must login or register to view this content.


CODE:
    void lockIntDvarToValue(uint pointer, byte value)
{
uint _flag = 0x4; // First value is pointer to name ( const char* ), so dvar flag is at 0x4
uint _value = 0xB; // Default value is at 0x11
//Thanks To momo5502
// Get pointer to dvar
byte[] buffer = new byte[4];
GetMemory(pointer, ref buffer);
Array.Reverse(buffer);
uint dvar = BitConverter.ToUInt32(buffer, 0);

// Get current dvar flag
byte[] flag = new byte[2];
GetMemory(dvar + _flag, ref flag);
Array.Reverse(flag);
ushort shortFlag = BitConverter.ToUInt16(flag, 0);

// Check if dvar is already write protected
if ((shortFlag & 0x800) != 0x800)
{
shortFlag |= 0x800;

flag = BitConverter.GetBytes(shortFlag);
Array.Reverse(flag);

// Apply new dvarflag
SetMemory(dvar + _flag, flag);
}

// Apply new value
SetMemory(dvar + _value, new byte[] { value });
}


    void forceHost()
{
lockIntDvarToValue(0x8AEE34, 0x1); // Lock 'party_minplayers' to 1/*change 0x01 to 0x06 for default*/
lockIntDvarToValue(0x8AEE40, 0x12); // Lock 'party_maxplayers' to 18 /*You can change 0x12, to 0x4 for 4 clients, or 6 for 6 clients and so on...*/
//Thanks To momo5502
}

*For MAX Players, this will ONLY work if your connection can handle it. So to check to see how many players you can host go into private match and see:
You must login or register to view this content.



Explained by momo5502:

"Just call it with forceHost();
What it basically does, it sets the dvar party_minplayers to 1, and applies dvar flag 0x800, which enables write protection on it, then the party automaticaly starts. For fun, I also locked party_maxplayers to 18, which forces the game to allow 18 players."

Again, all credits go to momo5502 for helping out on my MW3 ForceHost question thread: You must login or register to view this content.
Also thanks to kiwi_Modz

Proof:[/CENTER]
You must login or register to view this content.
Last edited by BaSs_HaXoR ; 08-25-2014 at 02:47 PM. Reason: 2.50 compatibility update

The following 21 users say thank you to BaSs_HaXoR for this useful post:

One, A Friend, alexcubano, BoatyMcBoatFace, ErasedDev, EliteHackzPS3, Hori_By_Nature, ImSooCool, JamesSwagger, Jannik007, kiwi_modz, koekiemonstarr2, Mango_Knife, Miyata, Mx444, Notorious, RaGE_LoLo69, SC58, Turk_Warrior
03-31-2014, 12:07 PM #2
Wait so how do I add this to a button? What bit would I put in the button? And thank you very much!
03-31-2014, 12:31 PM #3
makeabce
I defeated!
Originally posted by HaXoR View Post
ALL CREDITS TO momo5502


    void lockIntDvarToValue(uint pointer, byte value)
{
uint _flag = 0x4; // First value is pointer to name ( const char* ), so dvar flag is at 0x4
uint _value = 0xB; // Default value is at 0x11
//Thanks To momo5502
// Get pointer to dvar
byte[] buffer = new byte[4];
GetMemory(pointer, ref buffer);
Array.Reverse(buffer);
uint dvar = BitConverter.ToUInt32(buffer, 0);

// Get current dvar flag
byte[] flag = new byte[2];
GetMemory(dvar + _flag, ref flag);
Array.Reverse(flag);
ushort shortFlag = BitConverter.ToUInt16(flag, 0);

// Check if dvar is already write protected
if ((shortFlag & 0x800) != 0x800)
{
shortFlag |= 0x800;

flag = BitConverter.GetBytes(shortFlag);
Array.Reverse(flag);

// Apply new dvarflag
SetMemory(dvar + _flag, flag);
}

// Apply new value
SetMemory(dvar + _value, new byte[] { value });
}

    void forceHost()
{
lockIntDvarToValue(0x8AEE34, 0x1); // Lock 'party_minplayers' to 1/*change 0x01 to 0x06 for default*/
lockIntDvarToValue(0x8AEE40, 0x12); // Lock 'party_maxplayers' to 18 /*You can change 0x12, to 0x4 for 4 clients, or 6 for 6 clients and so on...*/
//Thanks To momo5502
}

*For MAX Players, this will ONLY work if your connection can handle it. So to check to see how many players you can host go into private match and see:
You must login or register to view this content.


Again, all credits go to momo5502 for helping out on my MW3 ForceHost question thread: You must login or register to view this content.
Also thanks to kiwi_Modz

Proof:[/CENTER]
You must login or register to view this content.


Force Host finally released...my feeling:
[ATTACH=CONFIG]30515[/ATTACH]

Thanks!

The following user thanked makeabce for this useful post:

BaSs_HaXoR
03-31-2014, 12:51 PM #4
Originally posted by bailey.smith69 View Post
Wait so how do I add this to a button? What bit would I put in the button? And thank you very much!

Just finished a tool. I will post a link along with the source. Smile

Originally posted by makeabce View Post
Force Host finally released...my feeling:
[ATTACH=CONFIG]30515[/ATTACH]

Thanks!

Yep. No problem. Smile Im glad i got it, and felt it would be a sweet release.
Also check out the program i made if you like. Smile
Last edited by BaSs_HaXoR ; 03-31-2014 at 03:29 PM.
03-31-2014, 04:52 PM #5
A Friend
League Champion
Thanks a lot. Force host eboots didn't work when I'm in a party and I pretty much never play solo. Appreciate it.
03-31-2014, 05:04 PM #6
OMG Thanks ! :wub:
03-31-2014, 10:20 PM #7
ahosli
I am error
love the 18 man lobbies xD
04-01-2014, 01:33 AM #8
KevinWinterX
< ^ > < ^ >
force host dont work
04-01-2014, 01:50 AM #9
Originally posted by HaXoR View Post
CREDITS TO momo5502 for ForceHost code


Made a tool, feel free to download: You must login or register to view this content.

(.rar) MD5: DEAE6091EDF16C59D996B47ADF3219B0

old versions:

*HAVE BUGS!*
V1.1: You must login or register to view this content.
(.rar) MD5: FE50D378DBBFC64C478323A995DC6A5B

You must login or register to view this content.
(.rar) MD5: 3A550D2EDA3FD717671A47E1750188E8

Source Download:
You must login or register to view this content.

You must login or register to view this content.

You must login or register to view this content.

You must login or register to view this content.

You must login or register to view this content.
    void lockIntDvarToValue(uint pointer, byte value)
{
uint _flag = 0x4; // First value is pointer to name ( const char* ), so dvar flag is at 0x4
uint _value = 0xB; // Default value is at 0x11
//Thanks To momo5502
// Get pointer to dvar
byte[] buffer = new byte[4];
GetMemory(pointer, ref buffer);
Array.Reverse(buffer);
uint dvar = BitConverter.ToUInt32(buffer, 0);

// Get current dvar flag
byte[] flag = new byte[2];
GetMemory(dvar + _flag, ref flag);
Array.Reverse(flag);
ushort shortFlag = BitConverter.ToUInt16(flag, 0);

// Check if dvar is already write protected
if ((shortFlag & 0x800) != 0x800)
{
shortFlag |= 0x800;

flag = BitConverter.GetBytes(shortFlag);
Array.Reverse(flag);

// Apply new dvarflag
SetMemory(dvar + _flag, flag);
}

// Apply new value
SetMemory(dvar + _value, new byte[] { value });
}

    void forceHost()
{
lockIntDvarToValue(0x8AEE34, 0x1); // Lock 'party_minplayers' to 1/*change 0x01 to 0x06 for default*/
lockIntDvarToValue(0x8AEE40, 0x12); // Lock 'party_maxplayers' to 18 /*You can change 0x12, to 0x4 for 4 clients, or 6 for 6 clients and so on...*/
//Thanks To momo5502
}

*For MAX Players, this will ONLY work if your connection can handle it. So to check to see how many players you can host go into private match and see:
You must login or register to view this content.


Again, all credits go to momo5502 for helping out on my MW3 ForceHost question thread: You must login or register to view this content.
Also thanks to kiwi_Modz

Proof:[/CENTER]
You must login or register to view this content.


Awesome bro thanks for this Tiphat
04-01-2014, 05:03 AM #10
Originally posted by KevinWinterX View Post
force host dont work


It works fine for me. Make sure to check your connection by going into private match first. Re-read the thread Smile

Copyright © 2025, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo