You are viewing our Forum Archives. To view or take place in current topics click here.
#21. Posted:
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
#22. Posted:
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
#23. Posted:
Status: Offline
Joined: Oct 03, 201311Year Member
Posts: 1,409
Reputation Power: 64
You should explain how some of the functions work (in detail) such as the unlimited ammo code you've supplied. You should tell them it NOPs the address to the left, etc. Otherwise, great tut.
- 0useful
- 0not useful
#24. Posted:
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
TGK wrote You should explain how some of the functions work (in detail) such as the unlimited ammo code you've supplied. You should tell them it NOPs the address to the left, etc. Otherwise, great tut.
I made the tutorial n00b friendly. I'll make some more updates for advanced later ;)
- 0useful
- 0not useful
#25. Posted:
Status: Offline
Joined: Feb 02, 201311Year Member
Posts: 5,477
Reputation Power: 335
Status: Offline
Joined: Feb 02, 201311Year Member
Posts: 5,477
Reputation Power: 335
Nice tut bro, should stop some spam on the fourm.
- 0useful
- 0not useful
#26. Posted:
Status: Offline
Joined: Feb 23, 201410Year Member
Posts: 719
Reputation Power: 25
Very good tut man.
Should reduce the spam.
Should reduce the spam.
- 0useful
- 0not useful
#27. Posted:
Status: Offline
Joined: Jan 06, 201311Year Member
Posts: 638
Reputation Power: 34
Status: Offline
Joined: Jan 06, 201311Year Member
Posts: 638
Reputation Power: 34
More like increase spam on forum when more small tools come out with the same features.
Nice Tut though.
Nice Tut though.
- 2useful
- 0not useful
#28. Posted:
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
Thanks for the great feedback everyone!
- 0useful
- 0not useful
#29. Posted:
Status: Offline
Joined: Jun 08, 201212Year Member
Posts: 407
Reputation Power: 18
Status: Offline
Joined: Jun 08, 201212Year Member
Posts: 407
Reputation Power: 18
you should also put the unlimited ammo function in a try & catch to stop an exception if the tool isn't connected...
Note: I also agree with Rubbers, its an okay tut but we get enough people releasing really horrible tools as it is
Last edited by XeXStozza ; edited 1 time in total
try
{
Jtag.SetMemory(0x820F63E0, new byte[] { 0x60, 00, 00, 00 });
Jtag.Call(0x822C9278, -1, 0, "c ^7UnlimitedAmmo ^3{ON}");
}
catch
{
MesssageBox.Show("Not Connected to console!");
}
Note: I also agree with Rubbers, its an okay tut but we get enough people releasing really horrible tools as it is
Last edited by XeXStozza ; edited 1 time in total
- 0useful
- 0not useful
#30. Posted:
Status: Offline
Joined: Feb 09, 201410Year Member
Posts: 267
Reputation Power: 14
Status: Offline
Joined: Feb 09, 201410Year Member
Posts: 267
Reputation Power: 14
XeXStozza wrote May i ask why your using the catch system like that?
The way i personally do it (People may do it different but this way works for me)
string connected = "XRPC Tool Connected!";
try
{
Jtag.Connect();
}
catch
{
MessageBox.Show("Failed to connect");
}
if(Jtag.activeConnection)
{
MessageBox.Show("Connected");
Jtag.Notify(XRPC.xNotiy.FLASHING_HAPPY_FACE, connected);
}
I use the try and if statements because the if deals with stuff when it connects whereas catch deals with the exception(if there is one).
Also i just wrote that out so if there are mistakes i apologize
May I ask why you didnt use the conditional operation? Just saves afew lines with if & else statements.
try { Jtag.Connect }
catch(Exception e) { MessageBox.Show(e.Message); }
MessageBox.Show((Jtag.activeConnection) ? "Connected" : "Not Connected");
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.