The Tavern
Hello, Guest

The Tri servers may be closed, but you can still use this place as a hangout, or to set up hunting parties with MH3U players.

Join the forum, it's quick and easy

The Tavern
Hello, Guest

The Tri servers may be closed, but you can still use this place as a hangout, or to set up hunting parties with MH3U players.
The Tavern
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Online posting only!!

2 posters

Go down

Online posting only!! Empty Online posting only!!

Post by FlashinG42 Fri Sep 28, 2012 2:17 pm

i only hav issue with some code that actually work online only when i post. when i didnt post and use it, the guy who posted lokk like he using that code [only on my screen] so i ws trying to change it and end up with doesnt work... so my question is.. Can u help plz?? lol

here's the codes

Speed Glide/Skate

2865941A 00008000
42000000 90000000
0414B1D4 42000000
E0000000 80008000


Increase Oxygen Bar

42000000 90000000
0414B200 00FF0000
E0000000 80008000



FlashinG42
FlashinG42
Ambitious Hunter
Ambitious Hunter

Posts : 94
Zenny : 66
Weapon of Choice : Hammer

MH3 Online Info
Status: Online (G Rank)
City: Depend lol
Room Availability:
Online posting only!! Left_bar_bleue2347/2458Online posting only!! Empty_bar_bleue  (2347/2458)

Back to top Go down

Online posting only!! Empty Re: Online posting only!!

Post by Stuff Fri Sep 28, 2012 5:30 pm

Oh that's what you mean by only when you post. Alright get ready for a little lesson. I'm assuming someone gave this to you. So there's a way to make it work for you everywhere. But you'll need to understand what's going on. I'll try to only explain what you need to know so this post doesn't expand that scroll bar over there too much. -->

offline the player section starts at 0x9014AB40
The first byte of the code usually says what to do at the desired address. It usually assumes that the base address is 0x80000000.
0x80000000 is not a good base address for the player section, so we change it to 0x90000000 with a 42/4A code. When I say 42 code, I mean the first number on the line is 42. This is not another 42 code 0414B1D4 42000000.
I don't like 4A, so your going to have to understand pointers. It's the same as base address, except...idk, you're just not touching base address. It's something I'm not comfortable changing. To use a pointer (4A000000 90000000) you just add 0x10 to the first byte on the line. So 1414B1D4 42000000.

Great. So now, all that happened in your code was they added 0x340 to the address. 14______ means write 4 bytes at po + ______. In this case 0x90000000 + 0x14B1D4 = 0x9014B1D4. (a byte is 2 digits btw. Couldn't think of a better way to say it).

anyway, 0x9014AB40 + 0x340 only leads to the 1st player in the quest online. But then that means you see the 1st player doing whatever it is you wanted to do, nobody else does, though. My old solution, after finding out that each player has 0xB20 between them, was a slider code (08/18) that writes to all 4 players. It's worked, but it was bootleg.

The current solution is the best non asm code. ASM would be the best way, but I'm not going to look at each code and make an asm code for it. This is a quick fix if you know what your doing, and if you don't know how, it doesn't make sense to me how it can't work.

0x806BBC74 points to you. If you're offline in a quest, it says 9014AB40, uhh etc. It'll have your address regardless of what player you are. And even in the city.

So we change the pointer to whatever is there. 48 does this. You tell it where to look, and it'll copy that to the pointer. You'll replace 4A000000 90000000 or 42000000 90000000 with this:

48000000 806BBC74
DE000000 90009100

But that's not enough. The pointer is whatever was there. So if you're offline in a quest your 14 line will say "write 4 bytes at 0x9014AB40 + ______". So you have to subtract from the address in the code 0x14AB40 if it's for offline. idk or feel like finding out where the online player 1 section starts, so you're gonna have to either find the code for offline or subtract 0x340 from it. You put calc.exe in hex mode.

So for your code, it will look something like this:

(0x14B1D4-0x340)-0x14AB40=______

2865941A 00008000
48000000 806BBC74
DE000000 90009100
14______ 42000000
E0000000 80008000

This will work for anything you find that affects your character offline(14AB40 to 14B660). Remember the -0x340 was because your code is online p1. For some codes, there's a little bit of thinking involved, but for the most part, this is enough info.


Last edited by Stuff on Sun Oct 07, 2012 12:14 pm; edited 1 time in total
Stuff
Stuff
Moderator
Moderator

Posts : 32
Zenny : 46

MH3 Online Info
Status:
City: Offline
Room Availability:
Online posting only!! Left_bar_bleue0/0Online posting only!! Empty_bar_bleue  (0/0)

Back to top Go down

Online posting only!! Empty Re: Online posting only!!

Post by FlashinG42 Fri Sep 28, 2012 6:09 pm

(0x14B1D4-0x340)-0x14AB40 = 0x354

i dont get it -_-
FlashinG42
FlashinG42
Ambitious Hunter
Ambitious Hunter

Posts : 94
Zenny : 66
Weapon of Choice : Hammer

MH3 Online Info
Status: Online (G Rank)
City: Depend lol
Room Availability:
Online posting only!! Left_bar_bleue2347/2458Online posting only!! Empty_bar_bleue  (2347/2458)

Back to top Go down

Online posting only!! Empty Re: Online posting only!!

Post by Stuff Fri Sep 28, 2012 10:27 pm

yeah. just pad it with 0s and put it in the code.

2865941A 00008000
48000000 806BBC74
DE000000 90009100
14000354 42000000
E0000000 80008000


Last edited by Stuff on Sun Oct 07, 2012 12:14 pm; edited 1 time in total
Stuff
Stuff
Moderator
Moderator

Posts : 32
Zenny : 46

MH3 Online Info
Status:
City: Offline
Room Availability:
Online posting only!! Left_bar_bleue0/0Online posting only!! Empty_bar_bleue  (0/0)

Back to top Go down

Online posting only!! Empty Re: Online posting only!!

Post by FlashinG42 Fri Sep 28, 2012 10:43 pm

i didnt test it yet but thx u very much and i will try to change it with the oxygen code too... so....


(0x14B200-0x340)-0x14AB40=______

48000000 806BBC74
DE000000 90009100
14______ 00FF0000
E0000000 80008000


if im right the answer would be 0x380 so.. it's 000380

idk need to try lol thx ms. stuffy
FlashinG42
FlashinG42
Ambitious Hunter
Ambitious Hunter

Posts : 94
Zenny : 66
Weapon of Choice : Hammer

MH3 Online Info
Status: Online (G Rank)
City: Depend lol
Room Availability:
Online posting only!! Left_bar_bleue2347/2458Online posting only!! Empty_bar_bleue  (2347/2458)

Back to top Go down

Online posting only!! Empty Re: Online posting only!!

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum