Post: BO2 - Super Force Host Offsets (MP/ZM)
10-24-2014, 11:24 PM #1
Eddie Mac
At least I can fight
(adsbygoogle = window.adsbygoogle || []).push({}); Hey NGU today i will be releasing my super force host offsets that i used in my tool. This will include Super force host for Multiplayer and Zombies. Sorry i held them so long but i thought my tool was good enough :p Anyways i have had lots of people ask me for them. So enjoy. And yes i know there is GSC force host for this game but this works 1000 times better.

Multiplayer:
party_connectToOthers = 0x01cd6018 set to 0x00
party_minPlayers = 0x01cd5a1b set to 0x01
party_minLobbyTime = 0x01cd649b set to 0x01
party_pregameTimer = 0x01cd5b3b set to 0x01

Zombies:
party_connectToOthers = 0x01cd6553 set to 0x00
party_minPlayers = 0x01cd5f53 set to 0x01
party_minLobbyTime = 0x01cd69d3 set to 0x01
party_pregameTimer = 0x19A95C0 set to 0x01

C# for Multiplayer
    Put this in a checkbox

if (checkBox1.Checked)
{
timer1.Start();
}
else
{
PS3.SetMemory(0x01cd6018, new byte[] { 0x01 }); // party_connectToOthers
PS3.SetMemory(0x01cd5a1b, new byte[] { 0x06 }); // party_minPlayers
PS3.SetMemory(0x01cd649b, new byte[] { 0x2d }); // party_minLobbyTime
PS3.SetMemory(0x01cd5b3b, new byte[] { 0x0a }); // party_pregameTimer
timer1.Stop();
}

And then this in a timer

{
PS3.SetMemory(0x01cd6018, new byte[] { 0x00 }); // party_connectToOthers
PS3.SetMemory(0x01cd5a1b, new byte[] { 0x01 }); // party_minPlayers
PS3.SetMemory(0x01cd649b, new byte[] { 0x01 }); // party_minLobbyTime
PS3.SetMemory(0x01cd5b3b, new byte[] { 0x01 }); // party_pregameTimer
timer1.Start();
}

C# For Zombies
    Put this in a checkbox

if (checkBox2.Checked)
{
timer2.Start();
}
else
{
PS3.SetMemory(0x01cd6553, new byte[] { 0x01 }); // party_connectToOthers
PS3.SetMemory(0x01cd5f53, new byte[] { 0x06 }); // party_minPlayers
PS3.SetMemory(0x01cd69d3, new byte[] { 0x06 }); // party_minLobbyTime
PS3.SetMemory(0x19A95C0, new byte[] { 0x06 }); // party_pregameTimer
timer2.Stop();
}

And this in a timer

{
PS3.SetMemory(0x01cd6553, new byte[] { 0x00 }); // party_connectToOthers
PS3.SetMemory(0x01cd5f53, new byte[] { 0x01 }); // party_minPlayers
PS3.SetMemory(0x01cd69d3, new byte[] { 0x01 }); // party_minLobbyTime
PS3.SetMemory(0x19A95C0, new byte[] { 0x01 }); // party_pregameTimer
timer2.Start();
}

(adsbygoogle = window.adsbygoogle || []).push({});

The following 19 users say thank you to Eddie Mac for this useful post:

One, anxify, BISOON, Crimzic, FlipFlow, Geo, Hunter926, Jewels, Loxy, MaNamesTyler, Otaku Modder, RM|T Lerks, ScaRzModZ, Script Kiddie, SoloHoster, SyGnUs, SyTry, x5150xiZombie, xDebugKiller
10-24-2014, 11:27 PM #2
MaNamesTyler
Little One
Originally posted by Eddie
Hey NGU today i will be releasing my super force host offsets that i used in my tool. This will include Super force host for Multiplayer and Zombies. Sorry i held them so long but i thought my tool was good enough :p Anyways i have had lots of people ask me for them. So enjoy. And yes i know there is GSC force host for this game but this works 1000 times better.

Multiplayer:
party_connectToOthers = 0x01cd6018 set to 0x00
party_minPlayers = 0x01cd5a1b set to 0x01
party_minLobbyTime = 0x01cd649b set to 0x01
party_pregameTimer = 0x01cd5b3b set to 0x01

Zombies:
party_connectToOthers = 0x01cd6553 set to 0x00
party_minPlayers = 0x01cd5f53 set to 0x01
party_minLobbyTime = 0x01cd69d3 set to 0x01
party_pregameTimer = 0x19A95C0 set to 0x01

C# for Multiplayer
    Put this in a checkbox

if (checkBox1.Checked)
{
timer1.Start();
}
else
{
PS3.SetMemory(0x01cd6018, new byte[] { 0x01 }); // party_connectToOthers
PS3.SetMemory(0x01cd5a1b, new byte[] { 0x06 }); // party_minPlayers
PS3.SetMemory(0x01cd649b, new byte[] { 0x2d }); // party_minLobbyTime
PS3.SetMemory(0x01cd5b3b, new byte[] { 0x0a }); // party_pregameTimer
timer1.Stop();
}

And then this in a timer

{
PS3.SetMemory(0x01cd6018, new byte[] { 0x00 }); // party_connectToOthers
PS3.SetMemory(0x01cd5a1b, new byte[] { 0x01 }); // party_minPlayers
PS3.SetMemory(0x01cd649b, new byte[] { 0x01 }); // party_minLobbyTime
PS3.SetMemory(0x01cd5b3b, new byte[] { 0x01 }); // party_pregameTimer
timer1.Start();
}

C# For Zombies
    Put this in a checkbox

if (checkBox2.Checked)
{
timer2.Start();
}
else
{
PS3.SetMemory(0x01cd6553, new byte[] { 0x01 }); // party_connectToOthers
PS3.SetMemory(0x01cd5f53, new byte[] { 0x06 }); // party_minPlayers
PS3.SetMemory(0x01cd69d3, new byte[] { 0x06 }); // party_minLobbyTime
PS3.SetMemory(0x19A95C0, new byte[] { 0x06 }); // party_pregameTimer
timer2.Stop();
}

And this in a timer

{
PS3.SetMemory(0x01cd6553, new byte[] { 0x00 }); // party_connectToOthers
PS3.SetMemory(0x01cd5f53, new byte[] { 0x01 }); // party_minPlayers
PS3.SetMemory(0x01cd69d3, new byte[] { 0x01 }); // party_minLobbyTime
PS3.SetMemory(0x19A95C0, new byte[] { 0x01 }); // party_pregameTimer
timer2.Start();
}



Hacker Drack

The following user thanked MaNamesTyler for this useful post:

Eddie Mac
10-24-2014, 11:29 PM #3
Eddie Mac
At least I can fight
Originally posted by MaNamesTyler View Post
Hacker Drack


Keep it on the Shhh
10-24-2014, 11:30 PM #4
SC58
Former Staff
Or you could just run this on a timer.

    
RPC.Call(Cbuf_AddText, 0, "set party_connectToOthers 0;party_minPlayers 1;party_minLobbyTime 1;party_pregameTimer 1");


That's if you wanted to do it another way.
10-24-2014, 11:42 PM #5
Eddie Mac
At least I can fight
Originally posted by SC58 View Post
Or you could just run this on a timer.

    
RPC.Call(Cbuf_AddText, 0, "set party_connectToOthers 0;party_minPlayers 1;party_minLobbyTime 1;party_pregameTimer 1");


That's if you wanted to do it another way.


Or this works just fine cause maybe they don't want to enable RPC, but thanks anyways Smile (not being a dick just saying)

The following user thanked Eddie Mac for this useful post:

Hunter926
10-24-2014, 11:49 PM #6
One
At least I can fight
thanks :wub:
10-24-2014, 11:52 PM #7
Eddie Mac
At least I can fight
Originally posted by Astek View Post
thanks :wub:


No problem man Smile
10-25-2014, 03:35 AM #8
Crimzic
Do a barrel roll!
Originally posted by Eddie
Hey NGU today i will be releasing my super force host offsets that i used in my tool. This will include Super force host for Multiplayer and Zombies. Sorry i held them so long but i thought my tool was good enough :p Anyways i have had lots of people ask me for them. So enjoy. And yes i know there is GSC force host for this game but this works 1000 times better.

Multiplayer:
party_connectToOthers = 0x01cd6018 set to 0x00
party_minPlayers = 0x01cd5a1b set to 0x01
party_minLobbyTime = 0x01cd649b set to 0x01
party_pregameTimer = 0x01cd5b3b set to 0x01

Zombies:
party_connectToOthers = 0x01cd6553 set to 0x00
party_minPlayers = 0x01cd5f53 set to 0x01
party_minLobbyTime = 0x01cd69d3 set to 0x01
party_pregameTimer = 0x19A95C0 set to 0x01

C# for Multiplayer
    Put this in a checkbox

if (checkBox1.Checked)
{
timer1.Start();
}
else
{
PS3.SetMemory(0x01cd6018, new byte[] { 0x01 }); // party_connectToOthers
PS3.SetMemory(0x01cd5a1b, new byte[] { 0x06 }); // party_minPlayers
PS3.SetMemory(0x01cd649b, new byte[] { 0x2d }); // party_minLobbyTime
PS3.SetMemory(0x01cd5b3b, new byte[] { 0x0a }); // party_pregameTimer
timer1.Stop();
}

And then this in a timer

{
PS3.SetMemory(0x01cd6018, new byte[] { 0x00 }); // party_connectToOthers
PS3.SetMemory(0x01cd5a1b, new byte[] { 0x01 }); // party_minPlayers
PS3.SetMemory(0x01cd649b, new byte[] { 0x01 }); // party_minLobbyTime
PS3.SetMemory(0x01cd5b3b, new byte[] { 0x01 }); // party_pregameTimer
timer1.Start();
}

C# For Zombies
    Put this in a checkbox

if (checkBox2.Checked)
{
timer2.Start();
}
else
{
PS3.SetMemory(0x01cd6553, new byte[] { 0x01 }); // party_connectToOthers
PS3.SetMemory(0x01cd5f53, new byte[] { 0x06 }); // party_minPlayers
PS3.SetMemory(0x01cd69d3, new byte[] { 0x06 }); // party_minLobbyTime
PS3.SetMemory(0x19A95C0, new byte[] { 0x06 }); // party_pregameTimer
timer2.Stop();
}

And this in a timer

{
PS3.SetMemory(0x01cd6553, new byte[] { 0x00 }); // party_connectToOthers
PS3.SetMemory(0x01cd5f53, new byte[] { 0x01 }); // party_minPlayers
PS3.SetMemory(0x01cd69d3, new byte[] { 0x01 }); // party_minLobbyTime
PS3.SetMemory(0x19A95C0, new byte[] { 0x01 }); // party_pregameTimer
timer2.Start();
}



Lol that one kid who leeched it cx
10-26-2014, 08:01 AM #9
You make a tool ! Please
10-26-2014, 08:05 AM #10
One
At least I can fight
Originally posted by swagscarface01 View Post
You make a tool ! Please

what you mean? he has, check his threads posted

The following user thanked One for this useful post:

Eddie Mac

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo