Post: Need A Little Help with C#
03-05-2014, 04:44 PM #1
Kizza09
Are you high?
(adsbygoogle = window.adsbygoogle || []).push({}); Hi i'm in need of a little help as stated in the the title, I have followed snays tutorials and they helped me out even though it only showed be basic functions it helped. So i decided to go the extra and make a couple of test tools i made a basic mw3 tool with easy functions and i started a Bo2 Zombies tool with 4 client functions -

I already know how to get client 0+ etc but i need help on getting in game client names and adding it too 1 button 'Get Client Names' and setting dvars because im getting tired of people posting things and never explaining how to use the offset etc and when someone asks they get groaned at or 'loled' at and its a joke they post for rep jump to another site repost - all i want is a little help lol but im not too sure who to ask and i need help getting offsets because no1 will explain how to do it either.. Thanks in advance i would appreciate the help i get!

Inbox me Your skype or post it if its easier to explain there.
(adsbygoogle = window.adsbygoogle || []).push({});
03-05-2014, 04:56 PM #2
Originally posted by BlueFace View Post
Hi i'm in need of a little help as stated in the the title, I have followed snays tutorials and they helped me out even though it only showed be basic functions it helped. So i decided to go the extra and make a couple of test tools i made a basic mw3 tool with easy functions and i started a Bo2 Zombies tool with 4 client functions -

I already know how to get client 0+ etc but i need help on getting in game client names and adding it too 1 button 'Get Client Names' and setting dvars because im getting tired of people posting things and never explaining how to use the offset etc and when someone asks they get groaned at or 'loled' at and its a joke they post for rep jump to another site repost - all i want is a little help lol but im not too sure who to ask and i need help getting offsets because no1 will explain how to do it either.. Thanks in advance i would appreciate the help i get!

Inbox me Your skype or post it if its easier to explain there.


Get Client names TMAPI:

      byte[] getClientNameParty = new byte[30];
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, OFFSETHERE, ref getClientNameParty);
string clientName_Party = Encoding.ASCII.GetString(getClientNameParty);
label1.Text = clientName_Party;


Get Client names CCAPI:

     
byte[] getClientNameParty = new byte[30];
CCAPI.GetMemory(OFFSETHERE, getClientNameParty);
string clientName_Party = Encoding.ASCII.GetString(getClientNameParty);
label1.Text = clientName_Party;

The following user thanked TypicalModder for this useful post:

Kizza09
03-06-2014, 04:07 AM #3
RatchetBooty
Former Staff
Originally posted by TypicalModder View Post
Get Client names TMAPI:

      byte[] getClientNameParty = new byte[30];
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, OFFSETHERE, ref getClientNameParty);
string clientName_Party = Encoding.ASCII.GetString(getClientNameParty);
label1.Text = clientName_Party;


Get Client names CCAPI:

     
byte[] getClientNameParty = new byte[30];
CCAPI.GetMemory(OFFSETHERE, getClientNameParty);
string clientName_Party = Encoding.ASCII.GetString(getClientNameParty);
label1.Text = clientName_Party;


30 bytes Gasp, if its bo2 and lower its 18 if it's ghosts its 12.
03-06-2014, 06:00 AM #4
Originally posted by RatchetBooty View Post
30 bytes Gasp, if its bo2 and lower its 18 if it's ghosts its 12.


it's never mattered for me, but thanks for the heads up!

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo