GTA V (PS3) GTA V Online Account Mods

Status
Not open for further replies.

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
I'm a PS3 GTA V Online modder I also mod, BO2, BO1, & MW3.
I do these sales.
(All payments through PayPal, GBP, USD, CAD, and EUR are accepted currencies.)
Money drops are $2 per an hour.
Fully Modded accounts: $8
Level ( Any level you want )
Stats (e.g Strength, Stamina, Shooting, Stealth, Flying, Lung Capacity and also Modded Combat Rolls :) )
Snacks - Body Armour - Smokes - etc all over 2 million. (Past the limit)
Clothing Unlocks
LSC Unlocks
Tattoo Unlocks
Heist Unlocks
600 Million
Removal of Bad Sport (If you have bad sport)
Fireworks
All Awards
Weapon Unlocks
If you are banned please refer to your paypal transaction id and I will cover banned accounts within a weeks time span, You must have an image of the psn logged in on xmb with the ban message in the background.
Any forum moderation that would like proof add my ingame name and inbox me on devbest if you want to verify to everyone that I am a legit modder.
------------------------------------------------------------
If you have already transferred from PS3 to PS4, the requirement of a new PSN account will be needed, meaning you must make a new PSN account before contacting me for any modifications to be done on GTA V for PS3, inorder for it to be transferrable to PS4.
Accounts are moddable and transferrable to PS4 (PS3 to PS4 Transfers)
It transfers over everything that has been placed on to your PS3 account.
Account Transfers are quite simple. I can guide you through if you have troubles.
 
Last edited:

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Nice, i wish i had my gta. But it sounds legit. I believe you can mod.

I do mod lol. I've been modding for 2-3 years now. I also do Black Ops 2, Black Ops 1, Ghosts, & Modern Warfare 3. I lost my warez copy of Advanced Warfare else I'd still be modding that. I do GTA V Mainly as I usually am on that.

I'm currently running 4.75.3 Rebug D-REX (DEX) CFW. I use Webman to manage all my games and PS3. If you want one of the games listed just ib me.

I make sure your account isnt banned while I am modding it via Antiban Eboots etc.. You have the choice of a refund or a new account as a compensation.
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
You have to jailbreak your ps3 to be able to play non paid games

All my games were bought before I even jailbroke aha I still have them just uploaded them to my PS3 saving me time from having to download all of them or torrent them.
 

Proximity

IDK?
Feb 13, 2014
673
56
All my games were bought before I even jailbroke aha I still have them just uploaded them to my PS3 saving me time from having to download all of them or torrent them.

Same here I just downloaded them to my ps3 so I didn't have to keep changing the discs everytime and to prevent scratchs but than again I don't play my ps3 anymore I let my cousin use it for netflix.
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Same here I just downloaded them to my ps3 so I didn't have to keep changing the discs everytime and to prevent scratchs but than again I don't play my ps3 anymore I let my cousin use it for netflix.
lel
 

Vapour

CrimKing was here.
Aug 18, 2013
179
13
dam wish i had the money for a fully modded account :{ im a fail!
 

Marcel

You're the guy who stole my car
Jul 17, 2015
466
208
How do you even code mod's for consoles I must know Senpai.
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
How do you even code mod's for consoles I must know Senpai.

Tbh I bought my tool as I have no time to code shit lmfao.

If I started Id probably release it without finishing as I can't easily like stick on one thing.
 
Back to modding I am.
 

Jaden

not so active
Aug 24, 2014
886
263
Should do mine for free :)
 
How do you even code mod's for consoles I must know Senpai.
You must have some knowledge of Assembly.
Download IDA Pro,
Download IDA for PS3
Download Visual Studio (or some other C++ IDE),

Extract the game's elf file and open it in IDA.
Find static addresses by using common game pointers, and strings.

Code a new C++ PS3 PPU Application that will be used for writing/reading memory into your jailbroken PS3.
Reading and writing memory for the PS3 in C++

Writing:
1 byte - *(char*)0x0000000 = 0x01;
2 bytes - *(short*)0x00000000 = 0x01;
3 bytes - *(float*)0x00000000 = 0x01;
4 bytes - *(int*)0x00000000 = 0x01;
8 bytes - *(double*)0x00000000 = 0x01;

Reading:
1 byte - *(char*)0x0000000;
2 bytes - *(short*)0x00000000;
3 bytes - *(float*)0x00000000;
4 bytes - *(int*)0x00000000;
8 bytes - *(double*)0x00000000;

Create a basic function which will read and write the data provided (you should use typename instead of like a switch case, or overriding functions).
Although, bypassing something like a ret check is another tutorial for another day.

Boom, done.
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Should do mine for free :)
 

You must have some knowledge of Assembly.
Download IDA Pro,
Download IDA for PS3
Download Visual Studio (or some other C++ IDE),

Extract the game's elf file and open it in IDA.
Find static addresses by using common game pointers, and strings.

Code a new C++ PS3 PPU Application that will be used for writing/reading memory into your jailbroken PS3.
Reading and writing memory for the PS3 in C++

Writing:
1 byte - *(char*)0x0000000 = 0x01;
2 bytes - *(short*)0x00000000 = 0x01;
3 bytes - *(float*)0x00000000 = 0x01;
4 bytes - *(int*)0x00000000 = 0x01;
8 bytes - *(double*)0x00000000 = 0x01;

Reading:
1 byte - *(char*)0x0000000;
2 bytes - *(short*)0x00000000;
3 bytes - *(float*)0x00000000;
4 bytes - *(int*)0x00000000;
8 bytes - *(double*)0x00000000;

Create a basic function which will read and write the data provided (you should use typename instead of like a switch case, or overriding functions).
Although, bypassing something like a ret check is another tutorial for another day.

Boom, done.

Target Manager is what I mainly use, It allows you to practically do anything, It comes with everything you need for TMAPI allows you to edit C++ Wise also I'm pretty sure.
 

rent

Member
Sep 24, 2012
408
67
Target Manager is what I mainly use, It allows you to practically do anything, It comes with everything you need for TMAPI allows you to edit C++ Wise also I'm pretty sure.
Target Manager sucks
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Proof of mod m8
Sure. Ill do a CCAPI proof right now.
 
img

Theres my webMAN Proof and CCAPI on my ps3 below.

img
 

sumo

The end is nigh.
Jan 18, 2014
143
102
Sure. Ill do a CCAPI proof right now.
 
img

Theres my webMAN Proof and CCAPI on my ps3 below.

img
Photoshop. Nah I'm joking, but I didn't notice the part where you said PS3. I'm Xbox1.
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Photoshop. Nah I'm joking, but I didn't notice the part where you said PS3. I'm Xbox1.
LMAO! Switch over Xbox sucks naturally. If I modded on Xbox id get alot of money at the same time Id need to spend alot to get new Conside IDS if not a fuckin new XBOX for modding smh
 
Status
Not open for further replies.

Users who are viewing this thread

Top