You are viewing our Forum Archives. To view or take place in current topics click here.
#11. Posted:
Status: Offline
Joined: Mar 03, 201212Year Member
Posts: 2,739
Reputation Power: 128
Status: Offline
Joined: Mar 03, 201212Year Member
Posts: 2,739
Reputation Power: 128
-Fletchr wrote Great post, a lot of time obviously gone into this, you have my thanks!
Thanks man, I did put a lot of time into this but hopefully it heps
- 0useful
- 0not useful
#12. Posted:
Status: Offline
Joined: Dec 21, 201112Year Member
Posts: 1,349
Reputation Power: 45
Status: Offline
Joined: Dec 21, 201112Year Member
Posts: 1,349
Reputation Power: 45
Nice tut man. Will be using this as I've just started.
- 1useful
- 0not useful
#13. Posted:
Status: Offline
Joined: Aug 31, 201212Year Member
Posts: 1,553
Reputation Power: 65
Status: Offline
Joined: Aug 31, 201212Year Member
Posts: 1,553
Reputation Power: 65
This is a very well written tutorial, though, like ObscureCoder pointed out, there is some information that could be tidied up.
Great job, nonetheless.
Great job, nonetheless.
- 0useful
- 0not useful
#14. Posted:
Status: Offline
Joined: Apr 19, 201410Year Member
Posts: 97
Reputation Power: 3
Status: Offline
Joined: Apr 19, 201410Year Member
Posts: 97
Reputation Power: 3
nice man this will help out a lot
- 0useful
- 0not useful
#15. Posted:
Status: Offline
Joined: Mar 03, 201212Year Member
Posts: 2,739
Reputation Power: 128
Status: Offline
Joined: Mar 03, 201212Year Member
Posts: 2,739
Reputation Power: 128
Botch wrote This is a very well written tutorial, though, like ObscureCoder pointed out, there is some information that could be tidied up.
Great job, nonetheless.
If you have any suggestions feel free to comment, I haven't been doing it too long so I'm still learning
- 0useful
- 0not useful
#16. Posted:
Status: Offline
Joined: Jul 21, 201212Year Member
Posts: 1,660
Reputation Power: 88
Great tutorial keep it up sure this will help out a large amount!
- 1useful
- 0not useful
#17. Posted:
Status: Offline
Joined: Jun 12, 201311Year Member
Posts: 1,076
Reputation Power: 44
Nice tutorial man! Will check it out
- 1useful
- 0not useful
#18. Posted:
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
Can I just suggest that you could store the offsets as uints so that they may be easily updated.
So, instead of:
You could just write:
Doesn't really help much but will just make it a bit easier to update all of your offsets.
public partial class Form1 : Form
{
XRPC x360 = new XRPC();
//Ghosts
public uint SV_SendGameServerCommand = 0x824D4460; //TU12
uint jump = 0x8201647C; //TU12 - jump height
uint falldmg = 0x8222E5A4; //TU12 -fall damage
uint Cbuf_AddText = 0x82448B28; //TU12 - send dvars
uint laser = 0x8227C8E8; //TU12 -laser on gun
So, instead of:
x360.SetMemory(0x8227C8E8, new byte[] { 0x0 });
You could just write:
x360.SetMemory(laser, new byte[] { 0x0 });
Doesn't really help much but will just make it a bit easier to update all of your offsets.
- 1useful
- 0not useful
#19. Posted:
Status: Offline
Joined: Apr 24, 201410Year Member
Posts: 38
Reputation Power: 1
Nice tutorial. Thanks for the share bro.
- 0useful
- 0not useful
#20. Posted:
Status: Offline
Joined: Mar 03, 201212Year Member
Posts: 2,739
Reputation Power: 128
Status: Offline
Joined: Mar 03, 201212Year Member
Posts: 2,739
Reputation Power: 128
vSmithy wrote Can I just suggest that you could store the offsets as uints so that they may be easily updated.
public partial class Form1 : Form
{
XRPC x360 = new XRPC();
//Ghosts
public uint SV_SendGameServerCommand = 0x824D4460; //TU12
uint jump = 0x8201647C; //TU12 - jump height
uint falldmg = 0x8222E5A4; //TU12 -fall damage
uint Cbuf_AddText = 0x82448B28; //TU12 - send dvars
uint laser = 0x8227C8E8; //TU12 -laser on gun
So, instead of:
x360.SetMemory(0x8227C8E8, new byte[] { 0x0 });
You could just write:
x360.SetMemory(laser, new byte[] { 0x0 });
Doesn't really help much but will just make it a bit easier to update all of your offsets.
Yeah I was debating wether or not to do it that way but then I thought I may aswell explain about the offsets and stuff. I might add a shortcuts section and add that
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.