MapleStory Adventures [READ FIRST POST]
-migrated-
Re: MapleStory Adventures Posted on: 08/19/2011 8:16am
Quote Post
Hi can you help me with the hack of pizza, i want to save my pizza, but the game always detect that i have pizza in my inventory.. how can i search for the AoB of pizza so that it will not be detected by the game and i can get 2 pizza a day.. and save it.. i just wanna use lemon XD
Re: MapleStory Adventures Posted on: 08/19/2011 8:34am
Quote Post
Quote from: "emtenteo"
For the 1.8.1 the code crit is

Code: [Select]
   _loc_16 = this.uint(this.uint(_loc_15 * 10000) / 10000 * 1000000);
    _loc_17 = this.criticalRandom.nextInt() % 1000000;
    if (_loc_17 < _loc_16)
    {
        _loc_10 = true;
    }

In this case, _loc_17 is random number from 0 to 999999. If we want to change % crit, we need to change the variable _loc_16. Ex: we want 50% crit, change _loc_16 = 999999/2. I will check it when this version is release (broken image removed)
_loc_16 not help u anymore

if u look deeper what's  "this.criticalRandom" ?
Ans
Code: [Select]
this.criticalRandom = new PM_PRNG();

In PN_PRNG Algorithm it use some seed number, and yes if we look in
Network > Packet > CharacterStateReusultMessage , there's new varible now
Code: [Select]
public var criticalRandomSeed:int = 0;
This mean server give u a seed number, we use this seed to calc critical chance to create damage on monster.On the other hand server has seed number and can calc damage on serverside too.If dmg not same as serverside , they kick u.  :twisted:
Re: MapleStory Adventures Posted on: 08/19/2011 8:48am
Quote Post
Quote from: "emtenteo"
Pet level up (one feed one level up for pet, client only, but your pet is have all abilites)
66 f1 05 66 f8 22 62 06 0f 63 00 00
66 f1 05 66 f8 22 62 06 0D 63 00 00

Energy request (you can request lemon from friends while your bag still have food)
d0 46 c8 04 00 14 01 00 00 47 26 d0 46 c9 04 00 14 01 00 00 47 26 d0 46 ca 04 00 14 01 00 00 47 26 d0 46 cc 04 00 14 01 00 00 47
d0 46 c8 04 00 14 01 00 00 02 26 d0 46 c9 04 00 14 01 00 00 02 26 d0 46 ca 04 00 14 01 00 00 02 26 d0 46 cc 04 00 14 01 00 00 02

Thx! my pet is glowing now (broken image removed) (woot ! pet is back to normal after refresh hehe (broken image removed), oh well)
Re: MapleStory Adventures Posted on: 08/19/2011 8:52am
Quote Post
Quote from: "s0ul"
In PN_PRNG Algorithm it use some seed number, and yes if we look in
Network > Packet > CharacterStateReusultMessage , there's new varible now
Code: [Select]
public var criticalRandomSeed:int = 0;
This mean server give u a seed number, we use this seed to calc critical chance to create damage on monster.On the other hand server has seed number and can calc damage on serverside too.If dmg not same as serverside , they kick u.  :twisted:

This doesn't sound too logical.
Sure they might give you the seed for the RNG but it is still a RNG, even with a seed. It will not produce the same number everytime, so naturally the number you generated will be different from what the server generated.
Re: MapleStory Adventures Posted on: 08/19/2011 7:40pm
Quote Post
any kind can update de hack? xD
Re: MapleStory Adventures Posted on: 08/19/2011 10:16pm
Quote Post
nothing really works atm, wish someone could do something even wpe pro didn't help me with anything.
Re: MapleStory Adventures Posted on: 08/19/2011 10:21pm
Quote Post
Hax still work for me ._.
Re: MapleStory Adventures Posted on: 08/19/2011 11:06pm
Quote Post
it seems to be working but it ain't really working. thats how it is for me though.
Re: MapleStory Adventures Posted on: 08/20/2011 12:15am
Quote Post
Quote from: "BLADOOM121"
it seems to be working but it ain't really working. thats how it is for me though.
All of these hacks work flawlessly for me.

Are you positive you didn't do anything in the game before applying the hacks?
Re: MapleStory Adventures Posted on: 08/20/2011 12:25am
Quote Post
sir how did  you find this code..

EmTenTeo

Energy request (you can request lemon from friends while your bag still have food)
d0 46 c8 04 00 14 01 00 00 47 26 d0 46 c9 04 00 14 01 00 00 47 26 d0 46 ca 04 00 14 01 00 00 47 26 d0 46 cc 04 00 14 01 00 00 47
d0 46 c8 04 00 14 01 00 00 02 26 d0 46 c9 04 00 14 01 00 00 02 26 d0 46 ca 04 00 14 01 00 00 02 26 d0 46 cc 04 00 14 01 00 00 02

i love this AoB thank you very much  (broken image removed)
Re: MapleStory Adventures Posted on: 08/20/2011 2:14am
Quote Post
How to find this code

- Use must have Sothink Decompile (the current portable version is 6.4, google it ^^)
- Save the swf game file and use Sothink Decompile open it.
- Try to find the function you want to hack

Ex: i want to hack energy request and i found this function

Here is a source code of this function
Code: [Select]
public function lowEnergyNotify(param1:Boolean = false) : void
        {
            var _loc_2:* = LogicFacade.instance.findUser("Friend");
            if (_loc_2 != null)
            {
                return;
            }
            if (param1 == true || this.m_lowEnergyAlertEnabled == true)
            {
                if (this._case0() == true)
                {
                    return;
                }
                if (this._case1() == true)
                {
                    return;
                }
                if (this._case2() == true)
                {
                    return;
                }
                if (this._case4() == true)
                {
                    return;
                }
                this._case5();
                this.m_lowEnergyAlertEnabled = false;
            }
            return;
        }// end function

In this case, you only request energy when case0 case1 case2 case3 case4 = false. If not, this function is return and the case5 will be nerver call. We can hack it if we remove all return statement in this function. Now go to the Raw Data tab of Sothink Decomplie and search this function, we will see

Code: [Select]
//d0
_as3_getlocal <0>
//46 c8 04 00
_as3_callproperty _case0(param count:0)
//14 01 00 00
_as3_ifne offset: 1
//47
_as3_returnvoid
//26
_as3_pushtrue
//d0
_as3_getlocal <0>
//46 c9 04 00
_as3_callproperty _case1(param count:0)
//14 01 00 00
_as3_ifne offset: 1
//47
_as3_returnvoid
//26
_as3_pushtrue
//d0
_as3_getlocal <0>
//46 ca 04 00
_as3_callproperty _case2(param count:0)
//14 01 00 00
_as3_ifne offset: 1
//47
_as3_returnvoid
//26
_as3_pushtrue
//d0
_as3_getlocal <0>
//46 cc 04 00
_as3_callproperty _case4(param count:0)
//14 01 00 00
_as3_ifne offset: 1
//47
_as3_returnvoid

The opcode of return statement is 47 (_as3_returnvoid). Change it to 02 (NOP - do nothing). (We can see all opcode of AS3 in this link http://www.anotherbigidea.com/javaswf/a ... tions.html)

DONE  :twisted:
Re: MapleStory Adventures Posted on: 08/20/2011 2:23am
Quote Post
Quote from: "KongregateHack"
Quote from: "BLADOOM121"
it seems to be working but it ain't really working. thats how it is for me though.
All of these hacks work flawlessly for me.

Are you positive you didn't do anything in the game before applying the hacks?

I found nothing using cheat engine on firefox... enlighten me please
Re: MapleStory Adventures Posted on: 08/20/2011 2:31am
Quote Post
its been updated sigh
Re: MapleStory Adventures Posted on: 08/20/2011 2:32am
Quote Post
v1.8.1.5 now ,
code also need to update
Re: MapleStory Adventures Posted on: 08/20/2011 2:37am
Quote Post
all the code is expired (broken image removed)( sigh... :shock: