You are viewing our Forum Archives. To view or take place in current topics click here.
#21. Posted:
XboxInferno
  • Junior Member
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
XeX-Space wrote Could not copy the file "obj\Release\Test 1.exe" because it was not found.

Still saying the same

[ Register or Signin to view external links. ]


Could you try changing the output path?

Project > Properties > Build > Output path
#22. Posted:
XboxInferno
  • Junior Member
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
Status: Offline
Joined: Mar 17, 201410Year Member
Posts: 95
Reputation Power: 3
XeX-Space wrote Nope still the same

[ Register or Signin to view external links. ]


Could you contact me on AIM?

AIM: xboxinferno @ aim.com

I'm sure that we'll be able to work this out
#23. Posted:
TGK
  • TTG Senior
Status: Offline
Joined: Oct 03, 201311Year Member
Posts: 1,409
Reputation Power: 64
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.
#24. Posted:
XboxInferno
  • Junior Member
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 ;)
#25. Posted:
Adamu
  • Winter 2016
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.
#26. Posted:
n3x
  • 2 Million
Status: Offline
Joined: Feb 23, 201410Year Member
Posts: 719
Reputation Power: 25
Status: Offline
Joined: Feb 23, 201410Year Member
Posts: 719
Reputation Power: 25
Very good tut man.

Should reduce the spam.
#27. Posted:
itsRubbers
  • Prospect
Status: Online
Joined: Jan 06, 201311Year Member
Posts: 642
Reputation Power: 34
Status: Online
Joined: Jan 06, 201311Year Member
Posts: 642
Reputation Power: 34
More like increase spam on forum when more small tools come out with the same features.

Nice Tut though.
#28. Posted:
XboxInferno
  • Junior Member
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!
#29. Posted:
XeXStozza
  • Powerhouse
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...

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
#30. Posted:
Bitwise
  • Resident Elite
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");
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.