Monster Hunter Portable 3rd HD
|
07-15-2014, 03:49 AM
Post: #166
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
Can anyone help me? I don't know how to make cheats, so I ask for help
I want my consumables not to "consume", like to have infinite amounts of them, like the "inf items" gecko code for mh3 (tri). I know I can use the "99 items slot" to have 99 of all my inventory but i want infinte consumables, drinks, tramps, whetstones, not to have 99 xxx scales or wyvern tears, it makes my reach and I don't want to have such easy money :/ can anyone help me or anyone got a code like this? I've search for it with no result. thnx! |
|||
07-15-2014, 11:13 PM
(This post was last modified: 07-15-2014 11:18 PM by Shauneh.)
Post: #167
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
(04-15-2014 04:10 AM)LunaMoo Wrote: As for available slots, as I understand they are hardcoded in game. The first sentence is false, as you can create 1, 2, or 3 slots to a charm if you want, if you know the binary codes. Which will allow you to create a charm that is as legit as the one farmed by someone who spent 1000hrs farming for one specific charm. Someone requesting a "legit" charm is understandable, as they probably don't have the endless hours to play monster hunter, and hope for a charm that is legitimately in the game; and never ever get it unless they went through some mindless farming, while also understanding how timetables work(another tedious task). With that said, if you can understand most of the info from pspgweber.com/forums/viewtopic.php?f=17&t=23557 you can create any charm you want, "Legit" or not. Probably would have been easier just to say you didn't know how to, rather than tell people to mindlessly farm a charm they may NEVER get due to RNG. P.S. I did notice you contributed a lot to this post and helped many people out, my hats off to you. This is not an attack on you by no means, just letting people know you can make whatever you want, and that they shouldn't have to worry themselves with running volcano 1000x + to get an item in the game. |
|||
07-16-2014, 04:09 AM
(This post was last modified: 07-16-2014 04:39 AM by LunaMoo.)
Post: #168
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
@Shauneh Thanks for the info, BTW you probably shouldn't write the part about it not being attack, most of the time people who write things like that in the net do exact opposite;x.
I took skill list from some site that someone linked and that made me think that number of slots was hardcoded which in fact is all stored within skill values. In the thread you linked it's all overcomplicated through, first of all binary is not a code, it's a numeric system, one which is completely useless for humans as we aren't limited to seeing and not seeing like transistors, but can see and interpret more advanced stuff easily which is much easier to read. I guess because that unneded complication with that binary "codes" maybe the person creating this thread didn't noticed that the game stores more skills than 100, it was pure accident that skill # 101 had "no skill", but it actually has 128 combinations. Knowing that there are 128 combinations for 2 skills and max number of slots we can simplify it to 1 easy to read equation: value to set = 1st_skill_# + 2nd_skill_# * 128 + 16384 * number_of_slots ~ which should be easy to understand without any numeric system conversions. I'll update the cheat table from the orginal post in a bit to include this(edit: done), so thanks for correcting me, I find those charms mostly useless so I didn't really spent much time checking it previously. That was also my point ~ even best legit charms are pretty weak especially if your character would be assigned to weak table limiting you to somewhat bad charms as those from other tables wouldn't really count as legit:]. ================================= @roxgal99 catch: Code: _C0 infinite consumables http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
07-17-2014, 04:26 PM
(This post was last modified: 07-17-2014 10:38 PM by LunaMoo.)
Post: #169
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
@Inuyashaya just get the cheat table on the bottom of the post you quoted, it allows you to edit inventory, including charms with all their parameters easily, just arrange your inventory and put the item you want to change into first or second slot, you can also create a new item starting with nothing, but since I didn't really listed ID's of all items, it will be easier to just get something existing to edit.
For skills power you simply have to put your data into this equation: Code: (1st_skill_lvl+30)*16+1024*(2nd_skill_lvl+30)+Talisman rarity-1 If you really want to do it through cw cheat(ie not having windows or something), you will have to convert the value you get to hex(almost any more advanced calculator can do that, there are lots of silly converters from decimal to hexadecimal as well even on android), then replace "FBC6" in that cheat as well as comment out or remove the second line and ofc you'll have to put the charm you want to edit skill levels in the first inventory slot(top left). Edit to add an example how to make an existing charm from legit table using cw cheat: Let's look at random charm - Knight Talisman with Dragon Res 2 / Defense 3 and 0 slots. Data we need: Knight talisman rarity = 3 1st_skill_ID(dragon res) = 44 2nd_skill_ID(defense) = 34 1st_skill_lvl = 2 2nd_skill_lvl = 3 number of slots = 0 (ID's are included with the cheat as well as my cheat table in here) So now we just put the data we have into 2 equations Code: (1st_skill_lvl+30)*16+1024*(2nd_skill_lvl+30)+Talisman rarity-1 then Code: 1st_skill_ID + 2nd_skill_ID * 128 + 16384 * number_of_slots (on windows for decimal-hexadecimal conversion it's easiest to just run windows calculator in "Programmer" mode, select "dec" type in value, then change it to hex and here you go) So we just put those in the cheat: Code: _C0 Custom Charm in first slot Code: _C0 Knight Talisman with Dragon Res 2 / Defense 3 and 0 slots Another edit - made some further changes in the initial post to add decorations as an option for this cw cheat for those that aren't on windows, just so I can consider that cheat complete and don't have to look at it ever again lol;p, I find assembly codes at least to some degree interesting, but value editing not so:c, cheat engine deals with it much faster than cw cheat. ========================= Someone wanted those earlier, so: Code: _C0 Disable HUD Also was in same post, instead of setting time to 10 and 50 minutes I decided to use newly working key combo (requires new git builds) cheats and made a cheat to increase/decrease time: Code: //(requires new git builds or release version 0.9.9+ if someone comes from future;p) And oops;p sorry for posting it two times, instead of editing / wrong button:C, fixed that. http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
07-17-2014, 10:40 PM
Post: #170
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
You're welcome:3.
I edited that lenghty post above adding some new cheats as well if anyone interested:]. http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
07-18-2014, 03:05 AM
Post: #171
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
Well I always throught it's while creating game in fact until I ported the initial cheat for someone it never bothered me to even look at charms, so that's news to me. I probably repeat myself, but I'm not playing the game nowadays other than porting or making cheats for it, so yeah I'm not really able to test stuff that's not easily visible in game. Those extra skills I listed are also untested because of that, they might be overpowered, leftovers in the code or something else, might even not work at all, the reason I listed 101- No Skill, is because it shows in game name as "No Skill" instead of just being empty like ID - 0.
I'm not sure if I understand what you're asking here "And going on it does like Poison +10 amd poison +15 or expert+10 if you Add that Number so its like 102+30 Poison +10 (Plus what you add to it) ". Was 102 a typo(you make alot of them^^)? If you ask what the constant numbers in equation are then well 30 is added to both skills because game starts counting from 0, but it also includes negative values so value required for the game is higher by 30 to what you can see in-game. First skill value is then multiplied by 16 because there are so many different talismans combinations(althrough some of weird ones have glitched/misalligned description with english patch:]), and second skill value is multiplied by 1024 because 16(again a number of different talismans) multiplied by 64(number of combinations for skill 1 different skill levels) = 1024. Last (-1) is also there because the game counts from 0, but actually lowest talisman rarity visible in game is 1. It might be a bit weird to understand, but basically 3 different things are stored as one value and all combinations must give different number to result in unique item, it was probably made that way because it uses exactly same system as other equipment. http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
07-20-2014, 04:11 PM
Post: #172
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
(07-20-2014 12:53 PM)Inuyashaya Wrote: Sorry for the Typos i dont speak English and i am a little Dumb in keyboard sorry . Ah so you mean 102 as skill ID which is only used to choose a skill, then it should get to the other equation: (1st_skill_lvl+30)*16+1024*(2nd_skill_lvl+30)+Talisman rarity-1 not the one you put it under. Skill LVL used in the other equation is the "strenght" of skill from if I remember correctly it varies from -30 to +33 or something alike at least for skill 1, for skill 2 I think it was slightly smaller -30 to +30, but I don't remember now and am lazy to check. So if you try to get existing talisman that has let's say defense +5, then to get "defense" you pick the ID number, while +5 is skill LVL, those two numbers will not be mixed at any point since you use them in different equations. http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
07-23-2014, 08:05 PM
Post: #173
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
thanks LunaMoo, works great! <3 <3
|
|||
07-29-2014, 10:23 PM
Post: #174
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
_C1 Skill Effects
_L 0xE0x30034 0x100A6FA0 _L 0x200A6FA0 0x0A200034 _L 0x200000D0 0x3C030880 _L 0x200000D4 0x90620139 _L 0x200000D8 0x10020006 _L 0x200000E0 0x54A2FFFC _L 0x200000E4 0x24630002 _L 0x200000E8 0x2463FFFF _L 0x200000EC 0x0A229BF9 _L 0x200000F0 0x90620139 _L 0x200000F4 0x0A229BEA _L 0x200000F8 0x00801821 _L 0x200A6C0C 0x0A200040 _L 0x20000100 0x3C030880 _L 0x20000104 0x90620138 _L 0x20000108 0x10020005 _L 0x20000110 0x5445FFFC _L 0x20000114 0x24630002 _L 0x20000118 0x0A229B11 _L 0x20000120 0x10050003 _L 0x20000128 0x0A229B05 _L 0x20000130 0x0A229B0E _L 0x10000138 0x0000214C _L 0x1000013A 0x0000398C _L 0x1000013C 0x00000D1B For some reason I can't get this working, just does nothing when I enable. |
|||
07-29-2014, 10:50 PM
Post: #175
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
@liyalai two things
1 - you put "x" in the first code: _L 0xE0x30034 0x100A6FA0 - which is clearly wrong, in this case it should be: _L 0xE0180034 0x100A6FA0 - basically you have to add 0x15 to number of skills added, and also - "0x" is just a prefix used for hexadecimal values, you don't write it inside a code since it already has 0x before the whole number. You could even keep that line as _L 0xE0150034 0x100A6FA0 and not care to add skill lines it's only an anti-freeze check anyway, so that line doesn't really affect how the cheat works, just stops refreshing the cheat as ppsspp has problems doing that with longer cheats. 2 - you probably check armor skills and notice they are unchanged? If so then that's fine, because this cheat does NOT add skills, it directly add their effects so you'll not see them added in menus, but it will work. http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
07-31-2014, 12:08 PM
Post: #176
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
Uh, kinda new here but can someone help me either uncomplete the last two hotspring quests or fully upgrade the hotspring? Used the complete all quests thing and now my hotsprings is stuck at 140hp/125stamina
Thanks in advance |
|||
08-07-2014, 02:25 PM
(This post was last modified: 08-07-2014 04:05 PM by LunaMoo.)
Post: #177
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
Someone requested code to change hp to 10, wasn't sure if he wanted to trigger some bonus or be hardcore so I made both:
Code: _C0 Force HP to 10 with god mode And the one for ppl that want to die often: Code: _C0 Force max hp to 10 for hardcore ppl;p Edit: oh yeah and @Anonymous10081 catch: Code: _C0 Fully upgraded hotsprings http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
08-08-2014, 06:57 AM
(This post was last modified: 09-29-2014 01:43 AM by bayurex.)
Post: #178
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
thanks
(08-07-2014 02:25 PM)LunaMoo Wrote: Someone requested code to change hp to 10, wasn't sure if he wanted to trigger some bonus or be hardcore so I made both: I made a simple application to calculate the hex for CUSTOM charm cheat custom charm calc : http://www.mediafire.com/download/7w2tkg...5/v0_4.rar ♦ Nick Evolve MHP3rd Online : elsyarex ♦ Sorry if my English is bad, I'm Indonesian! ;-) ♦ I only use Windows versions of PPSSPP. win 7 x64 rog Nvidia GT540m vram 2GB RAM 2GB |
|||
08-09-2014, 07:22 PM
Post: #179
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
Luna could you make a cheat for unlocking all farm parts please?
|
|||
08-09-2014, 07:56 PM
Post: #180
|
|||
|
|||
RE: Monster Hunter Portable 3rd HD
Catch:
Code: _C0 Unlock Yukumo Farm http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
« Next Oldest | Next Newest »
|