|
You last visited: Today at 17:14
Advertisement
Macro/F1-F9/AutoHotKey/For all Game(You Can Also Edit By Yourself)
Discussion on Macro/F1-F9/AutoHotKey/For all Game(You Can Also Edit By Yourself) within the Ragnarok Online forum part of the MMORPGs category.
10/11/2012, 05:57
|
#1
|
elite*gold: 0
Join Date: Aug 2011
Posts: 3
Received Thanks: 50
|
Macro/F1-F9/AutoHotKey/For all Game(You Can Also Edit By Yourself)
F1-F9 RAGNAROK Spamming or you can also edit by yourself
1. Download the autohotkey
2. Open autohotkey
3. Choose file then edit script
4. Paste this codes then save it
5. Choose file end reload
Here's the code for f1 to f9
(For autohotkey only)
$F1::
loop, 5
{
send, {F1}
sleep, 0
MouseClick, Left
}
return
$F2::
{
send, {F2}
sleep, 0
MouseClick, Left
}
return
$F3::
loop, 5
{
send, {F3}
sleep, 0
MouseClick, Left
}
return
$F4::
loop, 5
{
send, {F4}
sleep, 0
MouseClick, Left
}
return
$F5::
loop, 5
{
send, {F5}
sleep, 0
MouseClick, Left
}
return
$F6::
loop, 5
{
send, {F6}
sleep, 0
MouseClick, Left
}
return
$F7::
loop, 5
{
send, {F7}
sleep, 0
MouseClick, Left
}
return
$F8::
loop, 5
{
send, {F8}
sleep, 0
MouseClick, Left
}
return
$F9::
loop, 5
{
send, {F9}
sleep, 0
MouseClick, Left
}
return
You can change the hotkeys if you like just change the f1 example
$W::
loop, 5
{
send, {W}
sleep, 0
MouseClick, Left
}
return
I change f1 to W
Well you can now make and combo like for example making the champ to spam Finger Offensive
$F1::
loop, 5
{
sleep, 0
send, {F1}{F2}{F1}{F2}{F1}{F2}
MouseClick, Left
}
return
In this example the Dangerous Collect Soul is in the f1 and the Finger Offensive is in f2
Next is the alt command shorcut for those who want to spam just do this
$end::
{
send, {Alt Down}{1}{Alt Up}
}
return
If you just click the end button it will
spam sit 
JUST EXPERIMENT THIS CODE YOU CAN DO WHAT IS BEST FOR YOUR SERVER AND YOUR OWN GOOD
|
|
|
10/13/2012, 16:18
|
#2
|
elite*gold: 0
Join Date: Oct 2012
Posts: 37
Received Thanks: 3
|
master?
thanks for this. it's so useful. =))
but what im thinking is that RPE still working on RO Private Server?
even if there is already 3rd job like Warlock, Sorcerer, etc.
REPLY is so much appreciated.
|
|
|
12/30/2012, 06:04
|
#3
|
elite*gold: 0
Join Date: Jun 2008
Posts: 805
Received Thanks: 39
|
when i open the programme, the ragnarok exe crasshes.. what should i do? i mean, the scrip works perfectly fine but it crashes my ragnarok client soon after the hotkey runs
|
|
|
01/01/2013, 21:02
|
#4
|
elite*gold: 0
Join Date: Dec 2012
Posts: 2
Received Thanks: 0
|
so i just learnt this today and i figured out how to use it but when i actually use it in game nothing comes out for example.$F1::
loop, 5
{
sleep, 0
send, {F1}{F2}{F1}{F2}{F1}{F2}
MouseClick, Left
}
return
the dangerous soul collect and fo just wont come out
|
|
|
01/02/2013, 06:47
|
#5
|
elite*gold: 0
Join Date: Dec 2012
Posts: 122
Received Thanks: 18
|
Quote:
Originally Posted by woopywoopy23
so i just learnt this today and i figured out how to use it but when i actually use it in game nothing comes out for example.$F1::
loop, 5
{
sleep, 0
send, {F1}{F2}{F1}{F2}{F1}{F2}
MouseClick, Left
}
return
the dangerous soul collect and fo just wont come out
|
its because you didnt put sleep or delay between skills. the macro are just too fast and the sequence finished and the aftercast delay of skills cannot cope up with the macro.
Put delay / sleep so you are in perfect synchronize with servers delay and macro speed.
|
|
|
01/02/2013, 10:15
|
#6
|
elite*gold: 0
Join Date: Dec 2012
Posts: 2
Received Thanks: 0
|
ok i try and change the sleep to example.$F1::
loop, 5
{
sleep, 5
send, {F1}{F2}{F1}{F2}{F1}{F2}
MouseClick, Left
}
return
and still nothing comes out
i even tried
$F1::
loop, 5
{
sleep, 50
send, {F1}{F2}{F1}{F2}{F1}{F2}
MouseClick, Left
}
return
and still nothing comes out
|
|
|
01/02/2013, 11:19
|
#7
|
elite*gold: 0
Join Date: Sep 2012
Posts: 10
Received Thanks: 0
|
where can i download this?
|
|
|
01/03/2013, 06:29
|
#8
|
elite*gold: 0
Join Date: Jun 2008
Posts: 805
Received Thanks: 39
|
does this work on win7?
|
|
|
01/03/2013, 13:16
|
#9
|
elite*gold: 0
Join Date: Dec 2012
Posts: 3
Received Thanks: 0
|
this work on blackout Ro sir?
|
|
|
01/03/2013, 16:10
|
#10
|
elite*gold: 0
Join Date: Dec 2012
Posts: 122
Received Thanks: 18
|
Quote:
Originally Posted by woopywoopy23
ok i try and change the sleep to example.$F1::
loop, 5
{
sleep, 5
send, {F1}{F2}{F1}{F2}{F1}{F2}
MouseClick, Left
}
return
and still nothing comes out
i even tried
$F1::
loop, 5
{
sleep, 50
send, {F1}{F2}{F1}{F2}{F1}{F2}
MouseClick, Left
}
return
and still nothing comes out
|
Put the delay between skills
$F1::
loop, 5
{
send, {F1}
sleep, xx
send, {F2}
sleep, xx
Send, {F1}
sleep, xx
Send, {F2}
sleep, xx
Send,{F1}
sleep, xx
Send, {F2}
MouseClick, Left
}
xx as your specified delay
|
|
|
01/11/2013, 13:41
|
#11
|
elite*gold: 0
Join Date: Aug 2005
Posts: 1,738
Received Thanks: 74
|
Quote:
Originally Posted by asanis109
this work on blackout Ro sir?
|
Why dont you try it? It should work on all servers, because its not injecting anything into the .exe
|
|
|
01/15/2013, 08:03
|
#12
|
elite*gold: 0
Join Date: Jan 2013
Posts: 1
Received Thanks: 0
|
where can i download your macro master?..
and how to use it
|
|
|
01/17/2013, 15:00
|
#13
|
elite*gold: 0
Join Date: Dec 2012
Posts: 3
Received Thanks: 0
|
Quote:
Originally Posted by ChibiEbil
Why dont you try it? It should work on all servers, because its not injecting anything into the .exe
|
i already try it but 5-10 second's blackout-ro closes
|
|
|
01/31/2013, 13:03
|
#14
|
elite*gold: 0
Join Date: Mar 2011
Posts: 1
Received Thanks: 0
|
can i ask the loop 5, 5 there is milisec?
|
|
|
05/05/2013, 09:11
|
#15
|
elite*gold: 0
Join Date: Jan 2010
Posts: 2
Received Thanks: 0
|
How do you download the program?
|
|
|
 |
|
Similar Threads
|
Need help on AutoHotKey macro problem
10/17/2011 - Ragnarok Online - 2 Replies
I stop playing RO for few month, after i playback it, and i reinstall new version of AHK.
Problem is... AHK cannot work well in RO game. Sometime it will have slow spamming and have some delay, but it will be fine after I close and reopen my RO.
But I tested on notepad or Work, and it work well and didn't have any delay, just problem on RO game. So i think that it maybe the problem of game.
Any1 also have this kind of problem, any1 have any way to fix that?
|
[AutoHotKey] Casting macro 2.0
08/14/2009 - General Gaming Discussion - 0 Replies
Used this for greater magic 25-50
i had left over bone from 1-25, and intend on using Heal Other past 50, and frailty is good to spam inbetween those 2.
Thanks to Keraam, the majority of this code is edited from his own, and it is much appreciated!
differences: spells ofcorse, which bar is used , for some reason Send {R} wasnt working for me, so i just made a simple method for sheathing, resting time is different, shoulda made it a changing variable but w/e lol
it seems a tad more...
|
[AutoHotKey] Casting Macro
08/14/2009 - General Gaming Discussion - 0 Replies
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: Keraam
;
; Script Function: Casts Mana Missile and Heal Self. Pauses with the End button and exits with the DELETE key.
;
;
|
Macro with use of Autohotkey not working
01/25/2007 - Conquer Online 2 - 1 Replies
So I wanted to make a little macro to help scriptvessel level my rb fire tao, since script vessel won't summon guard for you.
So I came up with this idea, putt Tornado under F5 and Summonguard under F6
So here's the code:
;WinGet,id, ID,
Gui, Add, Text,, For www.elitepvpers.com
Gui, Add, Text,x10 y42 w100 h20, Auto-summon-guard.
Gui, Add, Text,x15 y62 w190 h20, To start, press F10 on active window,
|
All times are GMT +1. The time now is 17:15.
|
|