Page 1 of 2

iMaxMacro4.8 script for Subway PQ 25~30

Posted: Tue Sep 28, 2010 4:28 pm
by Chotz
This iMaxMacro script for who are lazy to join kpq... this script designed for my magician.. its abit slow for magician to gain exp in subway pq since i only have single target attack..but i can leveling my magician when i sleep LOL... edit urself for other job.

what this will do?
-auto enter the dungeon solo mode
-auto buff
-auto move
-auto attack
-auto pot (i setting it for magician using 2mp pot and 1hp pot, then 2mp pot skip 1hp pot, and so on)
-auto quit dungeon
-auto re-enter dungeon

Hotkey
-npc chat key - d
-attack key - x
-buff key - y
-HP pot key - END
-MP pot key - SHIFT
*Or Edit urself*

Note: Turn off numlok to use this bot...or the bot will not auto auto move...and FOCUS ur maplestory after run the macro.

Code: Select all

// Made by Chotz.
//Based on Nagamerah Tutorial

Dim Attack_Key
Dim Buff_Key
Dim Direction
Dim begin_move_Time
Dim While_move_Time
Dim Hp
Dim Hpot
Dim Mp
Dim Star
Dim Finish
Dim Hpstart
Dim Hpend

Sub Main
    debug.print "Start"
    debug.print "Entering Dungeon"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "down"
    sleep 1000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "d"
    Sleep 2500
    Call botSetting
    sendkey "MapleStory", Buff_key
    sleep 11000

    while True 
        call attack
        call moveRightLeft
        call counter
        delay 200
    wend

End sub

Sub Counter
    if DateDiff("s",Star,now()) >= Finish then
        call quit
    end if
End sub

Sub restart
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "down"
    sleep 1000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "d"
    Sleep 1000
    Call botSetting
    sendkey "MapleStory", Buff_key
    sleep 1000
    sendkey "MapleStory", Mp
    sleep 1000
    sendkey "MapleStory", Mp
    sleep 9000
End sub

Sub quit
    debug.print "Quiting Dungeon"
    sleep 5000
    keydown "right"
    sleep 3000
    keyup "right"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 5000
    keydown "right"
    sleep 4000
    keyup "right"
    sendkey "MapleStory", "d"
    sleep 2000
    sendkey "MapleStory", "down"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 3000
    debug.print "Entering Dungeon"
    call restart
End Sub

Sub botSetting

     begin_move_Time = now()
     Star = now()
     Hpstart = now()

     Attack_Key = "x"
     Buff_key = "y"
     Hp = "END"
     Mp = "SHIFT"

     Direction = "right"
     Hpot = "on"

     Hpend = 30
     While_move_Time = 12
     Finish = 540
End Sub

Sub attack
    sendkey "MapleStory", Attack_Key
End Sub

Sub buff
    sendkey "MapleStory", Buff_key
End Sub

Sub Hppot
    if Hpot = "on" then
        sendkey "MapleStory", Hp
        Hpot = "off"
    else
        Hpot = "on"
    end if
End Sub

Sub move
    if direction = "right" then
        keydown "right"
        sleep 1500
        keyup "right"
        keypress "left" //this will make ur char facing left after moving right.
        call Pot
        direction = "left"
    else
        keydown "left"
        sleep 1500
        keyup "left"
        direction = "right"
    end if
End Sub

Sub Pot
    sleep 200    
    sendkey "MapleStory", Mp
    sleep 1000
    sendkey "MapleStory", Mp
    sleep 1000
    call Hppot 
End Sub

Sub moveRightLeft
    if DateDiff("s",begin_move_Time,now()) >= While_move_Time then
        begin_move_Time = now ()
        call move
    end if
End Sub


Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Tue Sep 28, 2010 6:36 pm
by SoullessSoul
Chotz wrote:This iMaxMacro script for who are lazy to join kpq... this script designed for my magician.. its abit slow for magician to gain exp in subway pq since i only have single target attack..but i can leveling my magician when i sleep LOL... edit urself for other job.

what this will do?
-auto enter the dungeon solo mode
-auto buff
-auto move
-auto attack
-auto pot (i setting it for magician using 2mp pot and 1hp pot, then 2mp pot skip 1hp pot, and so on)
-auto quit dungeon
-auto re-enter dungeon

Hotkey
-npc chat key - d
-attack key - x
-buff key - y
-HP pot key - END
-MP pot key - SHIFT
*Or Edit urself*

Note: Turn off numlok to use this bot...or the bot will not auto auto move...and FOCUS ur maplestory after run the macro.

Code: Select all

// Made by Chotz.
//Based on Nagamerah Tutorial

Dim Attack_Key
Dim Buff_Key
Dim Direction
Dim begin_move_Time
Dim While_move_Time
Dim Hp
Dim Hpot
Dim Mp
Dim Star
Dim Finish
Dim Hpstart
Dim Hpend

Sub Main
    debug.print "Start"
    debug.print "Entering Dungeon"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "down"
    sleep 1000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "d"
    Sleep 2500
    Call botSetting
    sendkey "MapleStory", Buff_key
    sleep 11000

    while True 
        call attack
        call moveRightLeft
        call counter
        delay 200
    wend

End sub

Sub Counter
    if DateDiff("s",Star,now()) >= Finish then
        call quit
    end if
End sub

Sub restart
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "down"
    sleep 1000
    sendkey "MapleStory", "d"
    sleep 1000
    sendkey "MapleStory", "d"
    Sleep 1000
    Call botSetting
    sendkey "MapleStory", Buff_key
    sleep 1000
    sendkey "MapleStory", Mp
    sleep 1000
    sendkey "MapleStory", Mp
    sleep 9000
End sub

Sub quit
    debug.print "Quiting Dungeon"
    sleep 5000
    keydown "right"
    sleep 3000
    keyup "right"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 5000
    keydown "right"
    sleep 4000
    keyup "right"
    sendkey "MapleStory", "d"
    sleep 2000
    sendkey "MapleStory", "down"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 2000
    sendkey "MapleStory", "d"
    sleep 3000
    debug.print "Entering Dungeon"
    call restart
End Sub

Sub botSetting

     begin_move_Time = now()
     Star = now()
     Hpstart = now()

     Attack_Key = "x"
     Buff_key = "y"
     Hp = "END"
     Mp = "SHIFT"

     Direction = "right"
     Hpot = "on"

     Hpend = 30
     While_move_Time = 12
     Finish = 540
End Sub

Sub attack
    sendkey "MapleStory", Attack_Key
End Sub

Sub buff
    sendkey "MapleStory", Buff_key
End Sub

Sub Hppot
    if Hpot = "on" then
        sendkey "MapleStory", Hp
        Hpot = "off"
    else
        Hpot = "on"
    end if
End Sub

Sub move
    if direction = "right" then
        keydown "right"
        sleep 1500
        keyup "right"
        keypress "left" //this will make ur char facing left after moving right.
        call Pot
        direction = "left"
    else
        keydown "left"
        sleep 1500
        keyup "left"
        direction = "right"
    end if
End Sub

Sub Pot
    sleep 200    
    sendkey "MapleStory", Mp
    sleep 1000
    sendkey "MapleStory", Mp
    sleep 1000
    call Hppot 
End Sub

Sub moveRightLeft
    if DateDiff("s",begin_move_Time,now()) >= While_move_Time then
        begin_move_Time = now ()
        call move
    end if
End Sub

Lol Nice Release >.<

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Tue Sep 28, 2010 8:16 pm
by xiangloong
i love it..especially use it with aran and removing those mobs jump and move

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Tue Sep 28, 2010 9:45 pm
by SoullessSoul
my script kinda noob >< thats y i nvr share wif ppl

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Wed Sep 29, 2010 12:08 pm
by jla2109
thx^^

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Fri Oct 01, 2010 1:44 pm
by applefromsky
how to do??? i downloaded imaxmacro4.8 then how??? just want learn~

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Fri Oct 01, 2010 3:33 pm
by wmagicw
applefromsky wrote:how to do??? i downloaded imaxmacro4.8 then how??? just want learn~
There are 2 ways to load the scrip :
1.) first copy the scrip above and paste it in a NotePad and save it as a name such as Bot.txt
open the iMaxMacro48(which has a girl's photo) and click Open then select ur .txt saved just now

2.) open autoLoad.txt and delete anything in it, and paste the script above in it and save
open the iMaxMacro48 (which has a girl's photo)

After login to maple, just click run on iMaxMacro48 and click ur MapleStory.exe 1 more time
Tada~ That's all... and remember to turn off the NumLock so that ur character can move...
Correct me if I'm wrong...

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Sat Oct 02, 2010 4:02 pm
by rockerex
uh wad happens if i over level to 31 before job changing because of this script?

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Sat Oct 02, 2010 9:15 pm
by KFSPC8
rockerex wrote:uh wad happens if i over level to 31 before job changing because of this script?
Too Bad

Re: iMaxMacro4.8 script for Subway PQ 25~30

Posted: Sun Oct 03, 2010 10:36 am
by Chotz
myb u losing 3skill point coz late changing job.