Post: [CEX AND DEX][REMASTERED][SPRX] Snow Engine Non Host Mod Menu (With Aimbot)
01-18-2016, 07:53 AM #1
gopro_2027
Vault dweller
(adsbygoogle = window.adsbygoogle || []).push({}); Update #2 (Jan. 24)
Actually, I just updated it to support cex here in July 2016... But really it was last updated up above.
Thank you NickBeHaxing for the original Snow Engine.
Snow engine is great but lacks a bunch of stuff that can make it almost feel obsolete compared to rtm's.
So, added on to it.
Includes 5 menus:

  1. Main/Misc mods
  2. Player list (Not much of a menu really)
  3. Player options
  4. Self Menu
  5. Lobby Menu

Has over 30 options in total.
Has a 'verified' style mini menu for players.
Aimbot (Still needs major improvements)
Much Much More!
&
More to come!
VIDEO

PICTURES (OLD)

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.

CONTROLS

  • R3 + DPad Up to open
  • O to go back
  • X to select
  • DPAD Up/Down to scroll


BUGS

  • Sometimes it freezes. Doesn't happen too often. Mostly when leaving a lobby or quitting the game.
  • Keyboard sometimes will put a random character after whatever you type.
  • Aimbot sometimes aims at teamates (I HAVE been working on a fix.)
    So far I have slightly fixed the problem:
    Aimbot automatically disallows anyone who at any point becomes friendly from being in your aim list. The only problem is sometimes the other teammates show up as your friendlies so if that happens you can reset it by toggling aimbot off and on again.
  • There are probably a good few more but I am new to cod sprx's

TIPS

  • The modded lobby option is really fun with friends in a private lobby.
  • About half of the options require host. If you have played cod with mods before you can probably figure out which ones do and don't require host.
  • You can use the "Enter In DVAR" option to do neat things like toggle the timescale. Useful dvars can be found You must login or register to view this content.

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. I have not tested it in any way whatsoever but it should work fine lol
You must login or register to view this content.
I do not believe I need a virus scan for an sprx and a visual studio project and eboot :P

CREDITS (As written in the source)
//Snow Engine By Milky4444 & NickBeHaxing
//Credits:
//NickBeHaxing - Designing & Coding Menu
//Milky4444 - Pretty Much All Addresses, Making Aimbot, Overall Help Smile
//Sabotage - Aimbot Advice
//xPaqz - Orignal Local Button Monitoring
//SC58 - Some Addresses & Offsets
//Thriefboy - Hooking/Write Process Funcution
//OldSchoolModz - Not Releasing Anything Whats So Ever. He is the inspiriation behind Snow Engine
//Choco - Disable Cheat Protection
//OStankyModz - Client Huds
//gopro_2027 - Remastering The Menu

Note: I have permission from milky to release this if you are wondering You must login or register to view this content.

If anyone would like to help me with this, I am new to cod modding so it would be greatly appriciated
Last edited by gopro_2027 ; 07-18-2016 at 09:09 AM.

The following 25 users say thank you to gopro_2027 for this useful post:

Amaziing, anxify, BaSs_HaXoR, Bigmoneyhustlin, BulletProof3160, ChromeVisionz, Dog88Christian, FRINZ, gοd, GJx, Insult, ItzSparkBoii, Jordan, ll-WeAkNeSs-ll, LostAndCramb, Nug, Prizma, ryu_hayabusa80, Scotty4.11, Kronos, sleekshow, user_714, VenoxCoding, Weedfarmer4you
02-07-2016, 08:44 PM #47
Scotty4.11
You talkin to me?
Originally posted by IceddVertio View Post
The eboot is under dev_hdd0/game/BLUS30838/USRDIR/

Thats where its at right now. I was scared to delete the eboot from where it is now cause i thought that once you install an eboot it replace the original so i didnt want to corrupt any game files. By the way this game was downloaded off the PSN store so i dont know if that might be one of the problems.


Just copy the og eboot to your pc and then replace it. It might be that i dont have any games from psn store.
02-07-2016, 11:02 PM #48
IceddVertio
Pokemon Trainer
Its not letting me select any of the mods in the menu... Any fix?
02-14-2016, 03:41 AM #49
Bigmoneyhustlin
Can’t trickshot me!
Originally posted by pro View Post
I am updating it shortly. Wish me luck it works.

Good Shit Man...nice to see this stay open source also, really helpful..
cant remember but does this use bool sameteam for teamcheck?
i used mw3 source and added esp and other functions and also has team problems.
do u plan on using a engine function to fix team check?
02-14-2016, 10:53 PM #50
TheGreenPlanet
Do a barrel roll!
M8 just noticed this: for (int i = 0; i < 17; i++) //17 should be 12, this should fix the teamcheck bug

*UPDATE, READ MY LAST POST!!!
Last edited by TheGreenPlanet ; 02-15-2016 at 10:01 PM.

The following user thanked TheGreenPlanet for this useful post:

sleekshow
02-14-2016, 11:49 PM #51
sleekshow
I defeated!
Could you do a remake of mw2 snow engine pro?
02-15-2016, 08:56 PM #52
TheGreenPlanet
Do a barrel roll!
I have officially fixed the team check bug and ill release it for you guys:

bool isSameTeam(int me, int them)
{
if (*(int*)(0x3766b114 + (me * 0xDCool Man (aka Tustin)) != *(int*)(0x3766b114 + (them * 0xDCool Man (aka Tustin))) The smiley is suppose to be 8
{
return true;
}
else
{
return false;
}
}
The problem was the !isSameTeam in the whole aimbot function, the game doesn't know what to do if its ! (Not) the same team, therefore i just defined isSameTeam and it worked like a charm.
Things you need to edit yourself in the aimbot.h:

for (int i = 0; i < 17; i++) //17 should be 12

and of curse:

if (!isSameTeam(client, i)) becomes if (isSameTeam(client, i))

Without the ! since we defined it
Hope this helped, no need for complications Smile
Last edited by TheGreenPlanet ; 02-15-2016 at 10:05 PM.

The following user thanked TheGreenPlanet for this useful post:

sleekshow
02-16-2016, 05:54 PM #53
gopro_2027
Vault dweller
Originally posted by PlanetJulgran View Post
M8 just noticed this: for (int i = 0; i < 17; i++) //17 should be 12, this should fix the teamcheck bug

*UPDATE, READ MY LAST POST!!!


Originally posted by PlanetJulgran View Post
I have officially fixed the team check bug and ill release it for you guys:

bool isSameTeam(int me, int them)
{
if (*(int*)(0x3766b114 + (me * 0xDCool Man (aka Tustin)) != *(int*)(0x3766b114 + (them * 0xDCool Man (aka Tustin))) The smiley is suppose to be 8
{
return true;
}
else
{
return false;
}
}
The problem was the !isSameTeam in the whole aimbot function, the game doesn't know what to do if its ! (Not) the same team, therefore i just defined isSameTeam and it worked like a charm.
Things you need to edit yourself in the aimbot.h:

for (int i = 0; i < 17; i++) //17 should be 12

and of curse:

if (!isSameTeam(client, i)) becomes if (isSameTeam(client, i))

Without the ! since we defined it
Hope this helped, no need for complications Smile


sorry to break it to ya but what you did is the exact same thing Sal the problem is with the address not the function. also the reason i have it go 0 to 17 is cuz ground war has 18 people.
02-16-2016, 05:56 PM #54
gopro_2027
Vault dweller
Originally posted by sleekshow View Post
Could you do a remake of mw2 snow engine pro?


im have been working on mw2 for the past few weeks. its not gonna be a remake of snow engine tho. im working on my own thing.
02-16-2016, 06:44 PM #55
sleekshow
I defeated!
Originally posted by pro View Post
im have been working on mw2 for the past few weeks. its not gonna be a remake of snow engine tho. im working on my own thing.


Ok bro thank you very much!! Looking forward to the release. Your work is always really good!

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo