Additional Info
|
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 |
Additional Info
|
Thx v much !
but i dont have pet = = |
Additional Info
|
Quote from: "emtenteo" Pet level up (one feed one level up for pet, client only, but your pet is have all abilites) Thanks i have a pet....The energy one i cant request lemons though.....Everytime i try it takes me to the shop..Does anyone have this problem? |
Additional Info
|
Thanks for all. Does somebody have money cheat? ;_;
|
Additional Info
|
Is there a way to get a pet without donating?
|
Additional Info
|
New Patch???
Tried to get on and "We're experiencing some techincal difficulties. Please check again later." Popped out |
Additional Info
|
Quote from: "Holix" New Patch??? It's back up and the addresses still work. |
Additional Info
|
MY FIRST WORKING AOB! Tested it at those fire spirits in henesys.
Code: [Select] Can't miss Basically what it does is replace Code: [Select] with nothing. Hell yeah! Edit: Wait a minute? Did the other post get deleted? I didn't intentionally double post, there was a post inbetween. (broken image removed) |
Additional Info
|
Looks like v1.8.1.3 is coming out soon. SWF got uploaded
download2.nexon.net/Game/MapleStoryAdventures/1.8.1/msa/MSA.swf Taking a gander at the new FormulaFacade.as, it appears they're making crit a lot more complicated. |
Additional Info
|
Quote from: "Blueburst" Looks like v1.8.1.3 is coming out soon. SWF got uploaded say good bye to crit chance :lol: |
Additional Info
|
Quote from: "Blueburst" Looks like v1.8.1.3 is coming out soon. SWF got uploaded dnag really? (broken image removed) |
Additional Info
|
For the 1.8.1 the code crit is
Code: [Select] _loc_16 = this.uint(this.uint(_loc_15 * 10000) / 10000 * 1000000); 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) |
Additional Info
|
Quote from: "Farami" MY FIRST WORKING AOB! Tested it at those fire spirits in henesys. Thanks, That's work for me (broken image removed) |
Additional Info
|
Quote from: "emtenteo" For the 1.8.1 the code crit is U made the code and your going to test it when it comes out right? |
Additional Info
|
Quote from: "emtenteo" For the 1.8.1 the code crit is The basic crit seems to be 5%. Code: [Select] _loc_15 = 0.05 + param2.property.effectiveAddCri; Changing crit could be done by changing the value of _loc_15. So Code: [Select] 30% Critical Hit SHOULD do the trick. What I did was look at the constant pool and change the 0.05 constant to a 0.3, which should be 30%, then remove the "+ param2.property.effectiveAddCri" to make it more stable. |