Post: Red Devil Zombie Mod Menu | With Forge & Verfication ETC | (OPEN SOURCE)
11-23-2014, 08:02 PM #1
NickBeHaxing
Stoner Zone
(adsbygoogle = window.adsbygoogle || []).push({}); Hello NGUNinja
Today I'm Releasing The Red Devil Mod Menu For Zombie Mode.
I Have Been Working On This Menu For About 3 Weeks Now And I Gotta Say, It's Pretty Dope.


Main Features:

    
-All Client Jetpack
-All Client Forge Mode
-All Client Verification
-All Map Compatibility



Screenshot Of The Tool:


You must login or register to view this content.


Video:






Bugs & Notes


BUGS:

None.
Report Any Bugs To Me On Skype nicholas12345678945


NOTES:

1. Must Be ONLINE To Use Menu, Works In Solo Must Be Signed In Tho
2. Must Have Button Layout To DEFAULT
3. Menu Doesn't Work With PSN Store Copy
4. Must Stop Menu BEFORE Your Game Ends Then Quit BO1 To Avoid Freezing.
5. In Ascension Weapon Menu Not Supported




Here is The Download & The Virus Scan (2/54!) *DLLS CAUSE FALSE POSITIVE*


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.


HOW TO CONVERT TOOL TO DIFFERENT CCAPI VERSION


To Change CCAPI Version Of This Tool, Just Change The CCAPI.dll & PS3Lib.dll To Other Version Of DLLS


Credits:
    
SC58 - Offsets & Addresses
Milky4444 - Making Forge, Get Client Name Func & Helping Me Finish This Project <3
Makeabce - GetMap Func
AlmightySo - Jetpack & Button Monitoring
Choco - RPC
Shark - HUDS
Eddie Mac - Offsets
Quake3 - Angles To Forward Func
NickBeHaxing - Weapon Bytes, Teleport Offset, DoHeart, Verification System, Menu Base & Making This Menu <3
(adsbygoogle = window.adsbygoogle || []).push({});

The following 49 users say thank you to NickBeHaxing for this useful post:

Aevon, {H} | Exception, One, APOCALYP, Bigmoneyhustlin, bumbling fool, CODHoster1337_, codybenti, Creepzoid 0___0, Eddie Mac, EnderMods, Farva, Luckeyy, FusionIsDaName, gοd, g9g__BASHA__g9g, GFM, iHaCk_AiDaN, iRoyal // MoDz, Welsh, jaaaasonx, joni_djESP, koekiemonstarr2, makeabce, milky4444, MORPHEUS__2142, MrBeastMods, Nana, puffindaherb, richard5555, SaberNGU, samet2013, Script Kiddie, shakeNGU, Silent Assassin, smashedya, Synergy, Terrorize 420, That1Guy24, Laser, wdegrgefwef, xelahot, xIce KiLLaH, xSlinkeyy, xSuperLᴏbbies, xXx2o1o, zMarcusHD
11-26-2014, 12:36 PM #29
makeabce
I defeated!
Originally posted by NickBeHaxing View Post
Fixed, Not Giving u credit for Get Host. That's just some leeched Function and you just changed an offset. You may have found GetMap address.


It's not leeched function. Where have you seen this functions anyway(GetMap,GetMapMaterialWhiteShader,GetHost) ?
You must login or register to view this content.

Check out my message in the thread...and the functions are exactly same.
11-26-2014, 01:01 PM #30
NickBeHaxing
Stoner Zone
Originally posted by makeabce View Post
It's not leeched function. Where have you seen this functions anyway(GetMap,GetMapMaterialWhiteShader,GetHost) ?
You must login or register to view this content.

Check out my message in the thread...and the functions are exactly same.


The get host func was in sebs aimbot, dexmodders & Eddie macs forge and few other projects. Like I said you found the get map func but finding shader indexs isn't really accomplishment. It litterly finding a number that anyone could have found.
11-26-2014, 01:25 PM #31
makeabce
I defeated!
Originally posted by NickBeHaxing View Post
The get host func was in sebs aimbot, dexmodders & Eddie macs forge and few other projects. Like I said you found the get map func but finding shader indexs isn't really accomplishment. It litterly finding a number that anyone could have found.


Sebs
    
public static int GetHost()
{
string str = Lib.ReadString(0x172a58Cool Man (aka Tustin);
for (int i = 0; i < 0x12; i++)
{
string str2 = Lib.ReadString((uint)(0xf1651c + (i * 0x3600)));
if (str == str2)
{
return i;
}
}
return -1;
}

Mine
    
public static int GetHost()
{
string Host = PS3.Extension.ReadString(0x01C33DB0);
int i = 0;
if (Host == "")
{
i = 0;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (0 * 0x1d30)))
{
i = 0;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (1 * 0x1d30)))
{
i = 1;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (2 * 0x1d30)))
{
i = 2;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (3 * 0x1d30)))
{
i = 3;
}
return i;
}


So your saying i just changed offset and mine is found in several projects too?
And the getMaterial function thing is not found in anyother project,exept in mine. I know it's not big, but small credits would be still nice.

Well. No need to answer this anymore. What ever.
11-26-2014, 02:33 PM #32
NickBeHaxing
Stoner Zone
Originally posted by makeabce View Post
Sebs
    
public static int GetHost()
{
string str = Lib.ReadString(0x172a58Cool Man (aka Tustin);
for (int i = 0; i < 0x12; i++)
{
string str2 = Lib.ReadString((uint)(0xf1651c + (i * 0x3600)));
if (str == str2)
{
return i;
}
}
return -1;
}

Mine
    
public static int GetHost()
{
string Host = PS3.Extension.ReadString(0x01C33DB0);
int i = 0;
if (Host == "")
{
i = 0;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (0 * 0x1d30)))
{
i = 0;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (1 * 0x1d30)))
{
i = 1;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (2 * 0x1d30)))
{
i = 2;
}
else if (Host == PS3.Extension.ReadString(0x011008B8 + (3 * 0x1d30)))
{
i = 3;
}
return i;
}


So your saying i just changed offset and mine is found in several projects too?
And the getMaterial function thing is not found in anyother project,exept in mine. I know it's not big, but small credits would be still nice.

Well. No need to answer this anymore. What ever.


Either way you didn't release it, and you didn't release your menu in the first place. You charged money. For the gethost you used released addresses and it's nothing new. Index's are not hard to find, I had to find them for my menu huds. I gave you credit for the getmap, I had to fix the strings you had anyway. So I'm not giving you more credit . Its small dude chill. I shouldn't have even given you credits for the aim assist Since its just dvars that were released for a different game. So stop trying to get more credits and be happy what with you got.
11-26-2014, 03:04 PM #33
makeabce
I defeated!
Originally posted by NickBeHaxing View Post
Either way you didn't release it, and you didn't release your menu in the first place. You charged money. For the gethost you used released addresses and it's nothing new. Index's are not hard to find, I had to find them for my menu huds. I gave you credit for the getmap, I had to fix the strings you had anyway. So I'm not giving you more credit . Its small dude chill. I shouldn't have even given you credits for the aim assist Since its just dvars that were released for a different game. So stop trying to get more credits and be happy what with you got.


I said it's not a big thing,whos the one raging now?
Btw i didn't use 'released' addresses, i found them from debugger and then added to my thread.

And i'm still wondering, if you have EXACTLY same function(GetMapMaterialWhiteShader) that i created in your menu, why can't i get credits for it? Becose i didn't release it for public and you got it from someone else? It's still created by me if you got it from someone else.
11-26-2014, 03:26 PM #34
NickBeHaxing
Stoner Zone
Originally posted by makeabce View Post
I said it's not a big thing,whos the one raging now?
Btw i didn't use 'released' addresses, i found them from debugger and then added to my thread.

And i'm still wondering, if you have EXACTLY same function(GetMapMaterialWhiteShader) that i created in your menu, why can't i get credits for it? Becose i didn't release it for public and you got it from someone else? It's still created by me if you got it from someone else.


Fine, I'll give u credit for GetMapMaterialWhiteShader and GetMap. I'll change the credits on the thread when I get home. Stop raging on my thread for the littlest thing .
11-26-2014, 07:10 PM #35
Originally posted by NickBeHaxing View Post
Fine, I'll give u credit for GetMapMaterialWhiteShader and GetMap. I'll change the credits on the thread when I get home. Stop raging on my thread for the littlest thing .


WOW!!! I haven't been on ngu for awhile. You've been busy. Nice job on the menu.:yes:
11-26-2014, 08:08 PM #36
NickBeHaxing
Stoner Zone
Originally posted by codybenti View Post
WOW!!! I haven't been on ngu for awhile. You've been busy. Nice job on the menu.:yes:


Thanks Cody Smile I work pretty hard on them :fa:
11-27-2014, 09:47 PM #37
isevthrty
Vault dweller
how do you connect and attach -----all I get is you need to install ccapi -------and I do have it installed --2.50--
nerevmind ----I just had to take the ccapi.dll out of the folder and just keep the ps3.lib

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo