Post: [RELEASE/1.09] Neat Prestige Source Code (C#)
03-14-2014, 07:07 AM #1
ByteSource
League Champion
(adsbygoogle = window.adsbygoogle || []).push({});
Hey Modders and Non Modders, today im releasing my ghetto or non ghetto Prestige Toggle For Mod Menus!
i seen that some people use if() or cases well i made this. I know its not something new nor big! but im trying to help people before i retire from modding. CORRECT me if im wrong dont hate like a little bitch!


My Way:
    private void GhettoSelect(int Client)
{
int count = [COLOR="#FF0000"]0[/COLOR];
if (count > [COLOR="#FF0000"]11[/COLOR]) count = -[COLOR="#FF0000"]1[/COLOR]; count++;
Byte[] Bytes = BitConverter.GetBytes(count);
Array.Reverse(Bytes);
PS3.SetMemory(0x1792B1C, Bytes);
RPC.iPrintln(Client, "^2" + count.ToString() + " ^7: Prestige Set!");
RPC.iPrintln(Client, "Made By: ^2TeamIdentity");
}


Seb5594's Way:
    
private void TogglePrestige(Int32 clientIndex)
{
Int32 temp = PS3Lib.Extension.ReadInt32(0x1792B20) + 1;
temp = temp > [COLOR="#FF0000"]10[/COLOR] ? [COLOR="#FF0000"]0[/COLOR] : temp;
PS3Lib.Extension.WriteInt32(0x1792B20, temp);
RPC.iPrintln(clientIndex, "^2Prestige set: ^7" + temp.ToString());
RPC.iPrintln(clientIndex, "Made By: ^2Seb5594");
}


#TeamIdentity
Credits:
Mango - Offset
Milky - Correction
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to ByteSource for this useful post:

-SuperMan, xROccOx
03-14-2014, 09:36 AM #11
ByteSource
League Champion
Originally posted by MrNewbie View Post
Hey bro please could you pm me the cid genrator im banned off ghosts and really poor too afford a new cid atm


skype
03-14-2014, 11:53 AM #12
MrNewbie
Bounty hunter
Ok added you bro
03-14-2014, 06:30 PM #13
seb5594
Proud Former Admin
Originally posted by TeamIdentity View Post
Hey Modders and Non Modders, today im releasing my ghetto or non ghetto Prestige Toggle For Mod Menus!
i seen that some people use if() or cases well i made this. I know its not something new nor big! but im trying to help people before i retire from modding. CORRECT me if im wrong dont hate like a little bitch!


    private void GhettoSelect(int Client)
{
int count = [COLOR="#FF0000"]0[/COLOR];
if (count > [COLOR="#FF0000"]11[/COLOR]) count = -[COLOR="#FF0000"]1[/COLOR]; count++;
Byte[] Bytes = BitConverter.GetBytes(count);
Array.Reverse(Bytes);
PS3.SetMemory(0x1792B1C, Bytes);
RPC.iPrintln(Client, "^2" + count.ToString() + " ^7: Prestige Set!");
RPC.iPrintln(Client, "Made By: ^2TeamIdentity");
}


#TeamIdentity
Credits:
Mango - Offset
Milky - Correction


My Version of it :p
Originally posted by another user
///<summary>Use PS3Lib v4 from iMCSx to use this Function </summary>
private void TogglePrestige(Int32 clientIndex)
{
Int32 temp = PS3Lib.Extension.ReadInt32(0x1792B20) + 1;
temp = temp > 10 ? 0 : temp;
PS3Lib.Extension.WriteInt32(0x1792B20, temp);
RPC.iPrintln(clientIndex, ^2Prestige set: ^7" + temp.ToString());
}

The following user thanked seb5594 for this useful post:

ByteSource
03-14-2014, 07:33 PM #14
ByteSource
League Champion
Originally posted by seb5594 View Post
My Version of it :p


thanks bro :p

Edit: you forgot a (") before ^2Prestige Set but i fixed it Happy
03-15-2014, 01:55 AM #15
$ticky
Banned
Originally posted by TeamIdentity View Post
6-7/10% :d


Every part of a console ID represents something about the console, ex. (serial num., region ID, date manufactured, console type (fat, slim, super slim)) so unless you knew how what numbers and parts of the console ID correspond to those parameters you could not generate valid console IDs and even at that, they wouldn't be "generated" because they are already out there signed to another console. To truly generate them you'd have to figure out a way to validate ANY console ID. With that being said, if you knew how to validate them with Sony's servers or whatever they use, you could ban/unban console IDs and PSN accounts. So in conclusion I highly doubt your "ID Generator" generates 6/7 valid console IDs... :P

The following user thanked $ticky for this useful post:

xProvXKiller

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo