|
Silkroad Online
|
Silkroad Forums
|
Affiliates
|



|
|
View unanswered posts | View active topics
|
Page 1 of 1
|
[ 21 posts ] |
|
Author |
Message |
Xecut10ner
|
Post subject: Can someone do a "PvP Macro" Guide? Posted: Mon Mar 26, 2007 12:37 am |
|
Casual Member |
 |
Joined: Feb 2007 Posts: 81
|
Seriously, I dont think its "Cheating"
Coz only G15-Keyboard players can do it fast
enough without doin macro's.
So, If there anyone who "Pro" in Macros.
Explain here, or make a guide
_________________ <<banned from SRF for bot admission. -SG>>
|
|
Top |
|
 |
SkyNight
|
Post subject: Posted: Mon Mar 26, 2007 12:59 am |
|
Common Member |
 |
Joined: Jan 2007 Posts: 107
|
I believe i heard somewhere that if you use a macro you get the "network insecurity" popup thingy.. 
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 1:37 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
If its a 1 on1 battle use TWO hands( "T" "W" "O") Left Hand for the [ F1 - F4 ] Keys and Right hand for the [ 6- 0 ] Keys.
Put you weapons on the 0-9 keys on what ever slot you want, and 8-6 keys is where you will put your needed skills.
Trust me you'll do better with 2 hands than using 1, And you'll just hurt yourself.
I didn't really told you everything that can make it easier to macro with our G15 Keyboard.
And I also using dual-weapons on my chars.
edit : Practice can help you too. Giants are a nice target to practice with.
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
NuclearSilo
|
Post subject: Re: Can someone do a "PvP Macro" Guide? Posted: Mon Mar 26, 2007 1:49 am |
|
Forum God |
 |
 |
Joined: Aug 2006 Posts: 8834 Location: Age of Wushu
|
Xecut10ner wrote: Seriously, I dont think its "Cheating" Coz only G15-Keyboard players can do it fast enough without doin macro's.
So, If there anyone who "Pro" in Macros. Explain here, or make a guide
There is no guide for it. It's about your skill of programming. It's very easy, just set a key that replace another keys. And i can make one too 
_________________ Playing Age of Wushu, dota IMBA
|
|
Top |
|
 |
Nave47
|
Post subject: Re: Can someone do a "PvP Macro" Guide? Posted: Mon Mar 26, 2007 1:51 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
NuclearSilo wrote: Xecut10ner wrote: Seriously, I dont think its "Cheating" Coz only G15-Keyboard players can do it fast enough without doin macro's.
So, If there anyone who "Pro" in Macros. Explain here, or make a guide There is no guide for it. It's about your skill of programming. It's very easy, just set a key that replace another keys. And i can make one too 
I tried making one with Auto-it , and failed. Maybe you can share yours please.... 
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
NuclearSilo
|
Post subject: Re: Can someone do a "PvP Macro" Guide? Posted: Mon Mar 26, 2007 2:00 am |
|
Forum God |
 |
 |
Joined: Aug 2006 Posts: 8834 Location: Age of Wushu
|
Nave47 wrote: NuclearSilo wrote: Xecut10ner wrote: Seriously, I dont think its "Cheating" Coz only G15-Keyboard players can do it fast enough without doin macro's.
So, If there anyone who "Pro" in Macros. Explain here, or make a guide There is no guide for it. It's about your skill of programming. It's very easy, just set a key that replace another keys. And i can make one too  I tried making one with Auto-it , and failed. Maybe you can share yours please.... 
I use autoit too
In your script, u need 3 main functions Hotkeyset, Send and Sleep
- Hotkeyset : Sets a hotkey that calls a user function.
- Send : Sends simulated keystrokes to the active window.
- Sleep : Pause script execution.
_________________ Playing Age of Wushu, dota IMBA
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 2:03 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
Yes, It did contain those functions. I just don't know where I ****'ed up.
edit: can you PM me your script if thats ok. I wouldn't spread it if you don't want to.
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
NuclearSilo
|
Post subject: Posted: Mon Mar 26, 2007 2:22 am |
|
Forum God |
 |
 |
Joined: Aug 2006 Posts: 8834 Location: Age of Wushu
|
For example:
Quote: HotKeySet("{F1}", "Attack1")
Func Attack1() Send("1234") EndFunc
While 1 Sleep(1000) Wend When u press F1, it will automatically press 1, 2, 3 and 4 very fast If u want a delay, use Sleep(in ms)(1000=1s) Send("1") Sleep(1000) Send("2") .... Quote: While 1 Sleep(1000) Wend
is to make sure your script never ends.
Note: lower sleep use more CPU
_________________ Playing Age of Wushu, dota IMBA
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 2:26 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
Thats why my syntax for send is wrong I was doing it like this Send("[F1])"+"1"+"2").
Thanks. You sure helped me alot.
EDIT : Can I know the proper syntax for send if i'm going to include 1 function key? eg. "F4".
Sorry about this, I'm an Auto-it newbie.
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
NuclearSilo
|
Post subject: Posted: Mon Mar 26, 2007 2:39 am |
|
Forum God |
 |
 |
Joined: Aug 2006 Posts: 8834 Location: Age of Wushu
|
Quote: Send("[F1])"+"1"+"2")
If u want to merge 2 strings, use &
And it's actually {F1} and not in the quotes Send({F1} & "1" & "2")
Autoit is useful when u want to make something auto, like....bot lol
For any question, ask in PM 
_________________ Playing Age of Wushu, dota IMBA
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 4:24 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
Thanks, I'm gonna continue on my macro script I hope it works now.
btw I'm a MOD at a bot forum if you look hard enough. 
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
Xecut10ner
|
Post subject: Posted: Mon Mar 26, 2007 10:57 am |
|
Casual Member |
 |
Joined: Feb 2007 Posts: 81
|
ty NuclearSilo, I'll try this Auto thing
_________________ <<banned from SRF for bot admission. -SG>>
|
|
Top |
|
 |
Vandango
|
Post subject: Posted: Mon Mar 26, 2007 11:03 am |
|
Banned User |
 |
Joined: Jun 2006 Posts: 4143 Location:
|
Wheres The Fun In Macros lol?
press they keys ur self lesss liekly to get DC
_________________ <<banned from SRF for bot admission. -SG>>
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 11:04 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
Karlos Vandango wrote: Wheres The Fun In Macros lol? press they keys ur self lesss liekly to get DC
It depends at your connections speed.
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
Deacon
|
Post subject: Posted: Mon Mar 26, 2007 11:08 am |
|
Senior Member |
 |
 |
Joined: May 2006 Posts: 4377 Location: De Dutch
|
Does game guard block Auto it?
_________________ I cannot sing the blues...
|
|
Top |
|
 |
XxYODAxX
|
Post subject: Posted: Mon Mar 26, 2007 11:12 am |
|
Frequent Member |
 |
 |
Joined: Sep 2006 Posts: 1265 Location: Iraq
|
Sounds just like botting to me, automatically doing things for you...What makes you different? P.s Deacon wtf you do at school lol
_________________ We remember those who have paid the ultimate sacrifice for their country, for their friends and for their families. They shall live on forever in our memories.
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 11:13 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
Deacon wrote: Does game guard block Auto it?
You can open scripts "after" GG has loaded.
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
[SD]Master_Wong
|
Post subject: Posted: Mon Mar 26, 2007 11:14 am |
|
Forum God |
 |
 |
Joined: Jan 2006 Posts: 9544 Location: London, United Kingdom
|
Nave47 wrote: If its a 1 on1 battle use TWO hands( "T" "W" "O") Left Hand for the [ F1 - F4 ] Keys and Right hand for the [ 6- 0 ] Keys.
Put you weapons on the 0-9 keys on what ever slot you want, and 8-6 keys is where you will put your needed skills.
Trust me you'll do better with 2 hands than using 1, And you'll just hurt yourself.
I didn't really told you everything that can make it easier to macro with our G15 Keyboard.
And I also using dual-weapons on my chars.
edit : Practice can help you too. Giants are a nice target to practice with.
harder when you pvp properly you try phantom walking away using 1-0 and f1-f4 all properly
_________________
I am not online much if you wish to get hold of me send me a private message with your email/discord and ill catch up with you.
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 11:19 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
My Phatom walk is on F1 slot 1, got no problem escaping.
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
NuclearSilo
|
Post subject: Posted: Mon Mar 26, 2007 11:39 am |
|
Forum God |
 |
 |
Joined: Aug 2006 Posts: 8834 Location: Age of Wushu
|
Deacon wrote: Does game guard block Auto it?
Stupid GG blocks nothing. Before, in the previous version of GG, it's not possible to detect image, color, give command to the client. But now u can 
_________________ Playing Age of Wushu, dota IMBA
|
|
Top |
|
 |
Nave47
|
Post subject: Posted: Mon Mar 26, 2007 11:55 am |
|
Frequent Member |
 |
Joined: Oct 2006 Posts: 1038 Location: Inside your Mind
|
You can use a *cough*bot*cough* program to bypass GG.
_________________
Bakemaster wrote: ... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.
|
|
Top |
|
 |
|
Page 1 of 1
|
[ 21 posts ] |
|
Who is online |
Users browsing this forum: No registered users and 16 guests |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|