Jump to content

Help me c8 a macro plz!


KLthegreat
 Share

Recommended Posts

Also, next time post in the <b>Support</b> section in these forums...

Thanks.

EDIT: Actually, this isn't really a question, so first go read the help file, make a few little scripts, and then ask a question...

Edited by layer
FootbaG
Link to comment
Share on other sites

Guest Py7|-|[]/\/

I can help you, I actually already wrote a bot for the game. It took me a few weeks to get around the keyboar remapping but I finally did it. PM me if you want a copy.

Link to comment
Share on other sites

Send ("{LCTRL}")

Thats for pressing the left control button. To make it hit the right enter button you would do Send ("{RCTRL}") For keystrokes, look in the help file and go on the index tab and type in send, and take a look at all of the other functions, you'll get it...

FootbaG
Link to comment
Share on other sites

Guest Py7|-|[]/\/

MapleStory game designers remapped the keyboard so that it won't accept most keystrokes. They also have a timer limit on the amount of time a button can be held down. I already sent you the bot so you can probably figure it out.

Link to comment
Share on other sites

Send ("{LCTRL}")

Thats for pressing the left control button. To make it hit the right enter button you would do    Send ("{RCTRL}")    For keystrokes, look in the help file and go on the index tab and type in send, and take a look at all of the other functions, you'll get it...

<{POST_SNAPBACK}>

where did u send it 2...

i can't see it...

btw where is the help files

Link to comment
Share on other sites

; check for only one instance of script

$strTitle = "Hobbes' Auto Pickup"

If WinExists($strTitle) Then Exit

AutoItWinSetTitle($strTitle)

; set initial values

AutoItSetOption("SendAttachMode", 1)

AutoItSetOption("SendCapslockMode", 0)

Send("{CAPSLOCK off}")

HotKeySet("{CAPSLOCK}", "Toggle")

$bToggle = 0

; main loop

While 1

If $bToggle = 1 Then

Send("{LCTRL}")

Sleep(100)

EndIf

Wend

; called when user presses capslock

Func Toggle()

If $bToggle = 0 Then

$bToggle = 1

HotKeySet("{CAPSLOCK}")

Send("{CAPSLOCK on}")

HotKeySet("{CAPSLOCK}", "Toggle")

HotKeySet("{ENTER}", "Enter")

Else

$bToggle = 0

HotKeySet("{CAPSLOCK}")

Send("{CAPSLOCK off}")

HotKeySet("{CAPSLOCK}", "Toggle")

EndIf

EndFunc

; called when enter is pressed, but only if toggle is on

Func Enter()

$bToggle = 0

HotKeySet("{CAPSLOCK}")

Send("{CAPSLOCK off}")

HotKeySet("{CAPSLOCK}", "Toggle")

HotKeySet("{ENTER}")

Send("{ENTER}")

EndFunc

i edited this...

so it will it pressing ctrl

i want it to stop pressing ctrl after 3mins and rest for 10 sec

and then contiune pressing ctrl

repeating the whole

can anyone help me edit it?

thanks..

Link to comment
Share on other sites

Guest Py7|-|[]/\/

That won't work. MapleStory blocks most of those keys. Including you hotkeys. Besides, the syntax isn't right: HotKeySet("{CAPSLOCK}")...

Link to comment
Share on other sites

  • Developers

This will give you an error because your while...wend conflicts with if...endif.

something like this maybe?

$counter = 0
While 1
   Send("{LCTRL}")
   If $counter = 30 Then
      Send("x")
      $counter = 0
   EndIf
   Sleep(1000)
   $counter = $counter + 1
Wend

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

What should i do if i want to press "ctrl" every 1sec

and "x" every 30sec

what should the script be like?

; main loop

While 1

  If $bToggle = 1 Then

      Send("{LCTRL}")

      Sleep(100)

  Wend

EndIf

what should the "x" be?

plz reply

<{POST_SNAPBACK}>

$counter = 1
While 1
   Sleep(1000)
   Send("{LCTRL}")
   If $counter = 30 Then
      Send("x")
      $counter = 0
   EndIf
   $counter = $counter + 1
Wend
Link to comment
Share on other sites

  • 1 year later...

/\/' date='Nov 18 2004, 10:16 PM' post='42171']I sent it to your email adress... It will be an "attached file". Click on the "attachment" and save it.

hello everyone!

can u please send it to me too? I'm new to this but i wanna figure this stuff out! can u send it? i wanna experiment with other scrips.

thanks a lot! and keep up the good work!

Link to comment
Share on other sites

I was having a problem designing an autoclicker for MapleStory. Also, an autolooter I made with a similar concept wouldn't work (basically it sends a certain key over and over). I would greatly appreciate if Python or anyone else could help me with this problem. I am not begging for an entire program written out for me, just why my scripts won't work and how to make it work. I thought it was because GameGuard hijacks the Windows API but I guess that's not the case, since Python was able to somehow bypass it. I would greatly appreciate the help.

EDIT: I noticed that Python is listed as "Unregistered" so if anyone else knows how to help me with my script, I would greatly appreciate it. Also, I can give my source code if anyone wants to see where the problems are or what is preventing them to work. They all work fine outside of the game window but in the game window they don't work.

Edited by weasel127
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...