Site Maintenance (Server migration/upgrade will take place either today or tomorrow)week.

Go Back   GameKiller - Maple Story Hacks, Combat Arms Hacks & WonderKing Hacks > Maple Story > Maple Story Hacks, Bots Release & Downloads > Old & Detected Hacks (MS)

[Release] PYPQ Bot for Arans

This is a discussion on [Release] PYPQ Bot for Arans within the Old & Detected Hacks (MS) forums, part of the Maple Story Hacks, Bots Release & Downloads category; Edit Again: Well I can't figure out why my files won't work for you guys, so just do what Aslay19 ...


 
 
LinkBack Thread Tools Display Modes
Old 02-08-2010, 06:34 PM   #1
Newbie
Feedback Score: 0 reviews
 
Join Date: Jan 2010
Posts: 11
Thanks: 0
Thanked 2 Times in 1 Post
Default [Release] PYPQ Bot for Arans

Edit Again: Well I can't figure out why my files won't work for you guys, so just do what Aslay19 recommended:
kaizokoji, i have more info about this:
1.the NomadMemory.au3 should be place in the Include Folder in the Autoit(Exrograms files/Autoitv3/Include/Nomadmemory.au3
2.When i eddited ALL "if not (($Map = 926013100) or ($Map = 926013101) or ($Map = 926013102) or ($Map = 926013103) or ($Map = 926013104)) then"
it doens't work, and it makes each "right/left atack" like the 1st stage one: LOOONG move to right, short move to left, instead of only the first and the next will be short/short.so i leaved the "HELL" config,

to make it more short, just copy the .txt placed in your main post, replace the 0,1,2,3 for u difficulty and the While not ($Map = your difficulty map ID, u can pick from the main post)
i hope ive helped in something, this is working 5/5 right now
So replace these from the code I posted below:
$Difficulty = 3 with 0 for easy, 1 for normal, 2 for hard, 3 for hell
and,
While not ($Map = 926010004) with the correct value.
926010001 Easy
926010002 Normal
926010003 Hard
926010004 Hell

Download the NomadMemory file and place it in your Include folder in AutoIt, save the file, and compile it.

EDIT: Ok so apparently the memory is not reading correctly for most people, which is why the bot gets stuck attacking in the exit stage.
I don't know if it will fix it, but you could try downloading the NomadMemory file I uploaded in the other link, and placing it in the same folder as the bot. ([Only Registered and Activated Users Can See Links. Click Here To Register...])
If that doesn't work and you already have AutoIt, place it in your Include folder in the AutoIt directory.
Aaaand if that doesn't work I have no idea.
Please post your results if you do so.

For those of you who are trying to edit it themselves, the MapId 926010004 is the exit stage in hellmode.
926010001 Exit Easy
926010002 Exit Normal
926010003 Exit Hard
926010004 Exit Hell

This line here, "(($Map = 926013100) or ($Map = 926013101) or ($Map = 926013102) or ($Map = 926013103) or ($Map = 926013104))"
Stands for the first stage of the pq, as it will act differently (walk farther to the right) in the first stage.
The last number changes because there are multiple rooms for the pq.
So if theres already someone doing hellmode and you enter it as well, you will enter 926013101, if there are two people, 926013102, and so on.
I just assumed there will rarely be more than 4.

926010100 Round 1 Easy
926011100 Round 1 Normal
926012100 Round 1 Hard
926013100 Round 1 Hell

So I tried out many of the PYPQ bots for my aran, and none of them seemed to work, so I decided to make my own.
This bot will read Maple's memory to check which map you're in, so unless you die it will almost never fail, and will only attack once or twice in the exit room, then it will repeat.
I botted last night and got 35 jewels, and completed each pq with an S rank.

This might work for other classes, but it works best for Arans as it will use triple slash and combo smash

Heres the code, if you wish to edit it yourself.
I stole the basic framework from StabbyJoe who posted his in some other thread.

Code:
 ;PYPQ AutoIt v3 Bot by StabbyJoe (and Kaizokoji)
;Default settings:
;Default difficulty: Hell.
;Attack skill: CTRL.
;Start the bot anywhere on Hidden Street: Pyramid Dunes.
;It is recommended that you also run an auto potion program,
;some kind of god mode and filter out Pharoh Yetis.
;If you have all of the above and your attack skill hits 6 or more,
;you should receive S rank every time.
;The purpose of this bot is to repeatedly do the pq alone,
;collect a gem and re-enter.
;Using the below command you can change the PYPQ difficulty,
;0 is Easy, 1 is Normal, 2 is Hard and 3 is Hell.
 
#include <NomadMemory.au3>
$Difficulty = 3
WinWait("MapleStory","")
WinActivate("MapleStory","")
;MsgBox(1, "TestThis box will time out in 10 seconds", 10)
Sleep(1000)
$ProcessID = WinGetProcess("MapleStory")
$DllHandle = _MemoryOpen($ProcessID)
Local $MapAddress = 0x00B45118
Local $MapOffset = Dec("660")
$MapData = _MemoryRead($MapAddress, $DllHandle)
$MapPointer = '0x' & hex($MapData +  $MapOffset)
Local $ComboAddress = 0x00B43B48
Local $ComboOffset = Dec("2FEC")
$ComboData = _MemoryRead($ComboAddress, $DllHandle)
$ComboPointer = '0x' & hex($ComboData +  $ComboOffset)
 
While 1
 Sleep(1000)
    ;Walk to right side of map
    Send("{RIGHT down}")
    Sleep(9500)
    Send("{RIGHT up}")
    Sleep(1000)
    ;NPC chat to enter
    Send("{SPACE}")
    Sleep(1000)
    Send("{DOWN}")
    Sleep(1000)
    Send("{SPACE}")
    Sleep(1000)
    Send("{SPACE}")
    Sleep(1000)
    $Diffselect = 0
    While $Diffselect < $Difficulty
        Send("{DOWN}")
        Sleep(500)
        $Diffselect = $Diffselect + 1
    WEnd
    Send("{SPACE}")
    Sleep(1500) ;Entering S1
    Send("{RIGHT down}")
    Sleep(2000)
    Send("{RIGHT up}")
    Sleep(600)
    $Attack = 0
 $LeftAttack = 0
 $RightAttack = 0
 $Map = _MemoryRead($MapPointer, $DllHandle)
 $Combo = 0
 
 While not ($Map = 926010004) ;Move right, attack, move left, attack
  While $RightAttack < 25
   Send("{LCTRL}")
   Sleep(100)
   $RightAttack = $RightAttack + 1
  WEnd
  $RightAttack = 0
 
  ;Combo smash right
  $Combo = _MemoryRead($ComboPointer, $DllHandle)
  if $Combo > 29 Then
   Sleep(200)
   Send("{DOWN}")
   Sleep(150)
   Send("{RIGHT}")
   Sleep(150)
   Send("{LCTRL}")
   Sleep(400)
  EndIf
 
  Sleep(500)
  Send("{LEFT down}")
  Sleep(500)
  Send("{LEFT up}")
  While $LeftAttack < 25
   Send("{LCTRL}")
   Sleep(100)
   $LeftAttack = $LeftAttack + 1
  WEnd
  $LeftAttack = 0
 
  $Combo = _MemoryRead($ComboPointer, $DllHandle)
  if $Combo > 29 Then
   Sleep(100)
   Send("{DOWN}")
   Sleep(150)
   Send("{LEFT}")
   Sleep(150)
   Send("{LCTRL}")
   Sleep(400)
  EndIf
 
  Sleep(500)
  Send("{RIGHT down}")
  if not (($Map = 926013100) or ($Map = 926013101) or ($Map = 926013102) or ($Map = 926013103) or ($Map = 926013104)) then
   Sleep(500)
  Else
   Sleep(2000)
  EndIf
  Send("{RIGHT up}")
  $Attack = $Attack + 1
  $Map = _MemoryRead($MapPointer, $DllHandle)
 WEnd
    ;Exit
    Send("{RIGHT down}")
    Sleep(4000)
    Send("{RIGHT up}")
    Sleep(500)
    Send("{SPACE}")
    Sleep(1000)
    Send("{SPACE}")
    Sleep(1500)
    Send("{RIGHT down}")
    Sleep(3000)
    Send("{RIGHT up}")
    Sleep(1000)
    Send("{SPACE}")
    Sleep(1000)
    Send("{DOWN}")
    Sleep(1000)
    Send("{SPACE}")
    Sleep(1000)
    Send("{SPACE}")
    Sleep(1500)
WEnd
Heres the bot:
Only the hell mode works correctly. Read the top of the post to fix your own.
Easy: [Only Registered and Activated Users Can See Links. Click Here To Register...]
Normal: [Only Registered and Activated Users Can See Links. Click Here To Register...]
Hard: [Only Registered and Activated Users Can See Links. Click Here To Register...]
Hell: [Only Registered and Activated Users Can See Links. Click Here To Register...]
Just run it, then click on maplestory.
Make sure your NPC Chat is on spacebar, and your attack key is on ctrl.
This will not work with maplestory minimized.

If you wish to edit the code, you'll need this: [Only Registered and Activated Users Can See Links. Click Here To Register...]
Just put it in your Include folder in the AutoIt directory.

Have fun.

Edit: Updated for all difficulties. I haven't tested anything but hell mode so I can't guarantee that they will work.

Last edited by kaizokoji; 02-09-2010 at 09:34 PM.
kaizokoji is offline  
The Following 2 Users Say Thank You to kaizokoji For This Useful Post:
azenex (02-09-2010), mrphoking (02-09-2010)
Sponsored Links

Old 02-08-2010, 07:52 PM   #2
El SModerador

Feedback Score: 0 reviews
 
mero's Avatar
 
Join Date: Jul 2009
Posts: 1,262
Thanks: 330
Thanked 334 Times in 254 Posts
Default Re: [Release] PYPQ Bot for Arans

[Only Registered and Activated Users Can See Links. Click Here To Register...]
mero is offline  
Old 02-08-2010, 10:27 PM   #3
Beginner Hacker
Feedback Score: 0 reviews
 
Join Date: Oct 2009
Posts: 55
Thanks: 1
Thanked 2 Times in 2 Posts
Default Re: [Release] PYPQ Bot for Arans

What button is the NPC chat supposed to be on?
Deadx218 is offline  
Old 02-08-2010, 11:30 PM   #4
Newbie
Feedback Score: 0 reviews
 
Join Date: Jan 2010
Posts: 11
Thanks: 0
Thanked 2 Times in 1 Post
Default Re: [Release] PYPQ Bot for Arans

Originally Posted by Deadx218 View Post
What button is the NPC chat supposed to be on?
Oh sorry, NPC chat on spacebar, attack on ctrl
I'll edit my post.
kaizokoji is offline  
Old 02-09-2010, 12:02 AM   #5
Newbie
Feedback Score: 0 reviews
 
freakonaut's Avatar
 
Join Date: Feb 2010
Posts: 10
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

EDIT: nvm this doesn't work.

Last edited by freakonaut; 02-09-2010 at 07:07 PM.
freakonaut is offline  
Old 02-09-2010, 12:14 AM   #6
Amateur Hacker
Feedback Score: 0 reviews
 
Doomed's Avatar
 
Join Date: Feb 2010
Posts: 156
Thanks: 9
Thanked 2 Times in 2 Posts
Default Re: [Release] PYPQ Bot for Arans

Thank You! ive been looking for a working bot for pypq forever!

-edit- this dosnt work. i left it on all night followed every instruction you gave me.

Last edited by Doomed; 02-09-2010 at 11:29 AM.
Doomed is offline  
Old 02-09-2010, 12:18 AM   #7
Newbie
Feedback Score: 0 reviews
 
Join Date: Oct 2009
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

question, does yours only work for hell mode?

jw

i alreayd edited script and been usin that incase urs didnt but i was jw.
popdempillz is offline  
Old 02-09-2010, 12:24 AM   #8
Newbie
Feedback Score: 0 reviews
 
Join Date: Sep 2009
Posts: 6
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

hi, can u pls make one for easy mode. And if its no trouble, could u make it work when its minimized? Thanks!
azenex is offline  
Old 02-09-2010, 12:37 AM   #9
Newbie
Feedback Score: 0 reviews
 
Join Date: Oct 2009
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

due to the way the bot works making it work minimized would be way to much of a hassle for anyone so i guarentee they wont make it, let alone for someone thats now themselfs.
popdempillz is offline  
Old 02-09-2010, 01:27 AM   #10
Newbie
Feedback Score: 0 reviews
 
Join Date: Jan 2010
Posts: 11
Thanks: 0
Thanked 2 Times in 1 Post
Default Re: [Release] PYPQ Bot for Arans

Ok I updated for all difficulties.
I'm unable to make it minimizable, I have tried
kaizokoji is offline  
Old 02-09-2010, 01:28 AM   #11
Hacker
Feedback Score: 0 reviews
 
+ab.[Fire]™'s Avatar
 
Join Date: Jul 2009
Posts: 372
Thanks: 9
Thanked 67 Times in 29 Posts
Default Re: [Release] PYPQ Bot for Arans

Can you make one for hard mode arans too??
+ab.[Fire]™ is offline  
Old 02-09-2010, 02:34 AM   #12
Newbie
Feedback Score: 0 reviews
 
Join Date: Sep 2009
Posts: 6
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

good job!! this is gonna be so great! thanks!
azenex is offline  
Old 02-09-2010, 03:21 AM   #13
Newbie
Feedback Score: 0 reviews
 
Join Date: Jul 2009
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

mmm I try that hard mode for my aran but at exit stage he keeps atacking wont exit automatic, help pls =(
bass711 is offline  
Old 02-09-2010, 04:07 AM   #14
Newbie
Feedback Score: 0 reviews
 
Join Date: Jan 2010
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

thanks for the work

EDIT: good work, but at stage where you get your exp
it just stays inside and attack, doesnt exit
l00kitselvis is offline  
Old 02-09-2010, 04:47 AM   #15
Newbie
Feedback Score: 0 reviews
 
Join Date: Nov 2009
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: [Release] PYPQ Bot for Arans

does this A/B?
and what other bots do i need like aran bot?
and do i need BGM or outo pot?
gunrh576 is offline  
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads for: [Release] PYPQ Bot for Arans
Thread Thread Starter Forum Replies Last Post
Are Arans' ruining maplestory? Cream Maple Story General 31 02-27-2010 10:05 AM
[Release]PyPq Botter BishPop Old & Detected Hacks (MS) 34 02-09-2010 03:55 PM
Pypq Nairck Maple Story General 4 01-25-2010 11:12 AM
arans suck... Unlimited SpamZilla 6 12-18-2009 07:41 PM
How good are Arans? ph33t Maple Story General 12 12-13-2009 02:12 AM


GameKiller.net is not responsible for any content in any posting made by users on the site.