Post: Bo2 Prestige Selector Sprx Menu
01-30-2017, 01:24 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Can anyone help me I am looking for the prestige changer code where each time you select that option it goes to the next prestige like in jericho engine
(adsbygoogle = window.adsbygoogle || []).push({});
02-05-2017, 07:29 PM #11
Originally posted by S63 View Post
My bad do PrestigeNum++


alright I will try that, also do you know how I would get name changer with keyboard to work in my pregame sprx menu
02-05-2017, 07:34 PM #12
Originally posted by S63 View Post
My bad do PrestigeNum++


it worked thanks so much
02-05-2017, 07:35 PM #13
S63
Space Ninja
Originally posted by Mrtbyhyourwme View Post
it worked thanks so much


Use this otherwise it will not reset...

    struct PreGame {
int PrestigeNum;
void Reset() {
PrestigeNum = 0;
}
}PreGameMoDz;

void SetPrestige() {
if (PreGameMoDz.PrestigeNum < 10) {
WriteByte(Offset, PrestigeNum, 1);
}
else if (PreGameMoDz.PrestigeNum == 10) {
WriteByte(Offset, 0xA, 1);
}
else {
WriteByte(Offset, 0xB, 1);
}
}

void TogglePrestige() {
if (PreGameMoDz.PrestigeNum > 11) {
PreGameModz.PrestigeNum = 0;
}
else if (PreGameMoDz.PrestigeNum < 11) {
PreGameMoDz.PrestigeNum++;
}
SetPrestige();
}


And im sure you can use the same keyboard as the host 1 or you could use the sdk keyboard.
02-05-2017, 07:40 PM #14
Originally posted by S63 View Post
Use this otherwise it will not reset...

    struct PreGame {
int PrestigeNum;
void Reset() {
PrestigeNum = 0;
}
}PreGameMoDz;

void SetPrestige() {
if (PreGameMoDz.PrestigeNum < 10) {
WriteByte(Offset, PrestigeNum, 1);
}
else if (PreGameMoDz.PrestigeNum == 10) {
WriteByte(Offset, 0xA, 1);
}
else {
WriteByte(Offset, 0xB, 1);
}
}

void TogglePrestige() {
if (PreGameMoDz.PrestigeNum > 11) {
PreGameModz.PrestigeNum = 0;
}
else if (PreGameMoDz.PrestigeNum < 11) {
PreGameMoDz.PrestigeNum++;
}
SetPrestige();
}


And im sure you can use the same keyboard as the host 1 or you could use the sdk keyboard.


how would I write the function for the name changer though
02-05-2017, 07:58 PM #15
S63
Space Ninja
Originally posted by Mrtbyhyourwme View Post
how would I write the function for the name changer though


WriteString(Offsetforname, Keyboard("Title", "", 16));
02-05-2017, 08:08 PM #16
Originally posted by S63 View Post
WriteString(Offsetforname, Keyboard("Title", "", 16));


case 3:
write_process((void*)0x026C0658, Keyboard(2, "", "", 16));

im getting this error "too few arguments in function call" in the underlined area
02-16-2017, 02:40 PM #17
Hydrogen
Super Mod
Originally posted by Mrtbyhyourwme View Post
case 3:
write_process((void*)0x026C0658, Keyboard(2, "", "", 16));

im getting this error "too few arguments in function call" in the underlined area


Has your issues been resolved sir?
02-17-2017, 02:07 AM #18
Originally posted by Hydrogen View Post
Has your issues been resolved sir?


the prestige selector has just not that name changer
03-13-2017, 04:37 AM #19
Still need help with name chamger pregame

The following user thanked ReekoOnDEX for this useful post:

ProfoundModz

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo