Kodewerx https://www.kodewerx.org/forum/ |
|
MPH Stat Code Tool Download https://www.kodewerx.org/forum/viewtopic.php?f=11&t=680 |
Page 1 of 5 |
Author: | kickenchicken57 [ Wed Feb 07, 2007 6:15 am ] |
Post subject: | MPH Stat Code Tool Download |
Want to get up here... Cant do hex (well then you need to learn)... I took a break from AR Workshop to bring all you hex noobs (and lazy people who can do hex) a simple solution (Make sure you fill out ALL fields because I did not add any error handling code yet, I was in a hurry) http://kickenchicken57.110mb.com/Apps/MPH%20Stat%20Tool.rar |
Author: | Mewy [ Wed Feb 07, 2007 6:16 am ] |
Post subject: | |
Can you do it also with MKDS (world wide)? |
Author: | kickenchicken57 [ Wed Feb 07, 2007 8:01 am ] |
Post subject: | |
do you have codes for them? |
Author: | Dualscreenman [ Wed Feb 07, 2007 8:14 am ] |
Post subject: | |
AFAIK Mario Kart DS does not have a leaderboard. |
Author: | Baphomet [ Wed Feb 07, 2007 10:06 am ] |
Post subject: | |
Damn you kickenchicken... I wanted to make something like this ![]() |
Author: | kickenchicken57 [ Wed Feb 07, 2007 10:16 am ] |
Post subject: | |
Baphomet wrote: Damn you kickenchicken... I wanted to make something like this
![]() what can I say? lol, anyways give it a couple days (I am busy with 2 jobs + wedding planning) and I will add the option to change individual stats so that you do not have to edit every stat on your save |
Author: | Baphomet [ Wed Feb 07, 2007 10:18 am ] |
Post subject: | |
I could make my own... I just may do that. Although this game is getting boring for me. By the way, I'd like to help with the workshop. I'm working on my own version currently... Care to see it? |
Author: | kickenchicken57 [ Wed Feb 07, 2007 10:37 am ] |
Post subject: | |
sure, PM it to me. If you would like to help, you can easily add a tool (if you were using c#) by creating a form 595x392 make it do something, and all I have to do is add it into the project and have the parent form create an instance of it. would be nice if anyone here used C# though.... It's awesome for rapid application development. |
Author: | Baphomet [ Wed Feb 07, 2007 11:00 am ] |
Post subject: | |
I don't like C# mainly because its not portable. |
Author: | Z3R0 [ Wed Feb 07, 2007 2:39 pm ] |
Post subject: | |
kickenchicken57 wrote: sure, PM it to me. If you would like to help, you can easily add a tool (if you were using c#) by creating a form 595x392 make it do something, and all I have to do is add it into the project and have the parent form create an instance of it. would be nice if anyone here used C# though.... It's awesome for rapid application development.
well, thats why im learning it Kc57, I just wanna help with all the fun programs you make ![]() |
Author: | Baphomet [ Wed Feb 07, 2007 2:53 pm ] |
Post subject: | |
KickenChicken, does C# do hex math? Inputing hex in C++ is impossible... |
Author: | SithViperX [ Wed Feb 07, 2007 4:32 pm ] |
Post subject: | |
Meh, if you want hacked stats i say do it yourself. It took me 15 minutes from the minute i got to these forums to figure out how to hack my own stats and have custom created 2 for 2 of my friends so far. I think it would be more constuctive to explain to people like me exactly how codes like "Press Y to levitate" or "R+Up for any weapon" have been come up with. |
Author: | Dualscreenman [ Wed Feb 07, 2007 4:34 pm ] |
Post subject: | |
That would fall more into the realm of tutorials, but I agree with you. |
Author: | Parasyte [ Wed Feb 07, 2007 6:50 pm ] |
Post subject: | |
Using hex in C/C++ is beyond simple. |
Author: | James0x57 [ Wed Feb 07, 2007 7:14 pm ] |
Post subject: | |
I learned how from your GCNCrypt source code ![]() |
Author: | Baphomet [ Thu Feb 08, 2007 11:15 am ] |
Post subject: | |
Para, I just convert an unsigned char data type. But its not easy to INPUT from textboxes in C++ (using wxWidgets) |
Author: | Parasyte [ Thu Feb 08, 2007 10:34 pm ] |
Post subject: | |
Actually, it is very easy. Use scanf(). (Another reason I chose C over C++; C++ tried to deprecate the stdio library for some unknown reason.) |
Author: | kickenchicken57 [ Fri Feb 09, 2007 6:51 am ] |
Post subject: | |
Baphomet wrote: KickenChicken, does C# do hex math? Inputing hex in C++ is impossible... Easy, say you have a string of hex called "hexa": Code: int result result=int.Parse(hexa,System.Globalization.NumberStyles.HexNumber); Do your math and convert it back like so: Code: hexa = result.toString("X"); SithViperX wrote: Meh, if you want hacked stats i say do it yourself. It took me 15 minutes from the minute i got to these forums to figure out how to hack my own stats and have custom created 2 for 2 of my friends so far. I think it would be more constuctive to explain to people like me exactly how codes like "Press Y to levitate" or "R+Up for any weapon" have been come up with. 1) I made this program to also save time on converting all of these values by hand. I can now do it in 20 sec rather than 2 min. And its fun to program. 2) explain which part of codes like "Press Y to levitate" the button part or the actual code? Parasyte and kenobi shared a wealth of detail on code types and joker codes (for the button part) here http://kodewerx.net/forum/viewtopic.php?t=98 and I started a thread on how to hack codes here http://kodewerx.net/forum/viewtopic.php?t=628 as for metroid specific codes, whoever created them would have to post their method of finding them if you wanted to know who it was done. Dualscreenman wrote: That would fall more into the realm of tutorials, but I agree with you.
I have already posted one that can be applied to more than one game here http://kodewerx.net/forum/viewtopic.php?t=628 but it only helps if other people share their methods also. I may try to post another tutorial if I get time but I am slaving over AR Workshop at the moment ![]() |
Author: | Baphomet [ Fri Feb 09, 2007 10:04 am ] |
Post subject: | |
Parasyte wrote: Actually, it is very easy. Use scanf(). (Another reason I chose C over C++; C++ tried to deprecate the stdio library for some unknown reason.)
Scanf is commandline. I don't like command line. |
Author: | A_Random_Person [ Fri Feb 09, 2007 11:38 am ] |
Post subject: | |
nothing there to edit shots fired? |
Author: | Baphomet [ Fri Feb 09, 2007 12:35 pm ] |
Post subject: | |
Not that I'm aware of. Besides, I don't think its stored in the same area. |
Author: | kickenchicken57 [ Fri Feb 09, 2007 12:40 pm ] |
Post subject: | |
A_Random_Person wrote: nothing there to edit shots fired?
If someone finds the address, Ill be more than happy to add it in. Right now All of my effort is in AR Workshop (soon to have a name change) |
Author: | Jarrett619 [ Fri Feb 09, 2007 12:41 pm ] |
Post subject: | |
anyboy here have aim or msn that can help me with this. i really wanna do this. im a total noob at hacking for the ds but i really wanna learn how and i was pretty good at hacking for the ps2 though |
Author: | Baphomet [ Fri Feb 09, 2007 12:42 pm ] |
Post subject: | |
I have one. AIM me at SEShutdownName. K? |
Author: | Jarrett619 [ Fri Feb 09, 2007 12:45 pm ] |
Post subject: | |
ok |
Author: | Baphomet [ Fri Feb 09, 2007 12:49 pm ] |
Post subject: | |
I may not be able to get AIM at this time, however. I'm having problems with this room. |
Author: | Parasyte [ Fri Feb 09, 2007 12:59 pm ] |
Post subject: | |
Baphomet wrote: Parasyte wrote: Actually, it is very easy. Use scanf(). (Another reason I chose C over C++; C++ tried to deprecate the stdio library for some unknown reason.) Scanf is commandline. I don't like command line. Whoops, typo. I meant to write sscanf() ... scanf() uses stdin, while sscanf() uses strings (which you will be getting from text boxes and such). |
Author: | Baphomet [ Fri Feb 09, 2007 1:00 pm ] |
Post subject: | |
I'll have to look into that. I think I can use strtol also. |
Author: | Parasyte [ Fri Feb 09, 2007 1:53 pm ] |
Post subject: | |
strtoi() converts a string from base-10 to an integer. sscanf(..., "%d", ...); does the same thing. (EG: text "100" gives you an integer containing 0x64. For hex, you would use sscanf(..., "%x", ...); Where text "64" would give you an integer containing 0x64.) |
Author: | Illusion [ Fri Feb 09, 2007 8:28 pm ] |
Post subject: | |
Just a quick question, where do I download v2.0.50727 off the .Net Framework? |
Page 1 of 5 | All times are UTC - 8 hours [ DST ] |
Powered by phpBB® Forum Software © phpBB Group https://www.phpbb.com/ |