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
04-12-2014, 03:41 AM #29
Miyata
Gym leader
it keeps finding games and i dont get host? Any help Smile
04-12-2014, 03:48 PM #30
yo is anyone having problems with it working on dex?
04-16-2014, 03:50 PM #31
clark1226
Who’s Jim Erased?
hey bass nice tool but there a bug when i put 4 maximum player it put 18 player lol idk why but still its good cuzz my internet is kinda good lol
Originally posted by HaXoR View Post
CREDITS TO momo5502 for ForceHost code



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.

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.


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.
07-26-2014, 08:43 AM #32
Cool
Verry nice
08-25-2014, 04:46 PM #33
If anyone is having problems with this on CCAPI 2.50, i updated it so it will work. Smile
04-20-2015, 11:26 PM #34
kaser
Do a barrel roll!
No longer works !!!
05-06-2015, 10:30 PM #35
alexcubano
Climbing up the ladder
thx you man. good work
05-09-2015, 07:32 PM #36
X-Nothing-X
There's way Too Much..
Originally posted by HaXoR View Post
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.


Dude..this is a great tool..but it gives me an error when i try and attach. I can connect fine, but cannot attach ...

Are there any other ways to fix this? I dont wana use an eboot force host..and i have a good internet so every couple games ill get host, but usually will lose it after a game or 2.

I know your busy thses days..is there anyone out there that can update and fix this?
01-16-2017, 09:55 PM #37
Arrowx
Keeper
Thank You BaSs !

Copyright © 2025, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo