Silkroad Online Forums

A community forum for the free online game Silkroad Online. Discuss Silkroad Online, read up on guides, and build your character and skills.

Faq Search Members Chat  Register Profile Login

All times are UTC




Post new topic Reply to topic  [ 21 posts ] 
Author Message
 Post subject: Can someone do a "PvP Macro" Guide?
PostPosted: Mon Mar 26, 2007 12:37 am 
Casual Member
Offline

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
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 12:59 am 
Common Member
Offline

Joined: Jan 2007
Posts: 107
I believe i heard somewhere that if you use a macro you get the "network insecurity" popup thingy.. :P


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 1:37 am 
Frequent Member
Offline

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.

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject: Re: Can someone do a "PvP Macro" Guide?
PostPosted: Mon Mar 26, 2007 1:49 am 
Forum God
User avatar
Offline

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 :P

_________________
Playing Age of Wushu, dota IMBA


Top
 Profile  
 
 Post subject: Re: Can someone do a "PvP Macro" Guide?
PostPosted: Mon Mar 26, 2007 1:51 am 
Frequent Member
Offline

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 :P


I tried making one with Auto-it , and failed. Maybe you can share yours please.... :P

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject: Re: Can someone do a "PvP Macro" Guide?
PostPosted: Mon Mar 26, 2007 2:00 am 
Forum God
User avatar
Offline

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 :P


I tried making one with Auto-it , and failed. Maybe you can share yours please.... :P

I use autoit too :D
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
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 2:03 am 
Frequent Member
Offline

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.

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 2:22 am 
Forum God
User avatar
Offline

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
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 2:26 am 
Frequent Member
Offline

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.

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 2:39 am 
Forum God
User avatar
Offline

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
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 4:24 am 
Frequent Member
Offline

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. :wink:

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 10:57 am 
Casual Member
Offline

Joined: Feb 2007
Posts: 81
ty NuclearSilo, I'll try this Auto thing

_________________
<<banned from SRF for bot admission. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:03 am 
Banned User
Offline

Joined: Jun 2006
Posts: 4143
Location:
Babel
Wheres The Fun In Macros lol?
press they keys ur self lesss liekly to get DC

_________________
<<banned from SRF for bot admission. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:04 am 
Frequent Member
Offline

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.

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:08 am 
Senior Member
User avatar
Offline

Joined: May 2006
Posts: 4377
Location: De Dutch
Does game guard block Auto it?

_________________
I cannot sing the blues...


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:12 am 
Frequent Member
User avatar
Offline

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
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:13 am 
Frequent Member
Offline

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.

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:14 am 
Forum God
User avatar
Offline

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

_________________
Image


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
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:19 am 
Frequent Member
Offline

Joined: Oct 2006
Posts: 1038
Location: Inside your Mind
My Phatom walk is on F1 slot 1, got no problem escaping.

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:39 am 
Forum God
User avatar
Offline

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 8)

_________________
Playing Age of Wushu, dota IMBA


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 26, 2007 11:55 am 
Frequent Member
Offline

Joined: Oct 2006
Posts: 1038
Location: Inside your Mind
You can use a *cough*bot*cough* program to bypass GG.

_________________
Image
Bakemaster wrote:
... Now I have to spam up about 30 more posts tonight so I can go delete some of Nave47's posts.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 21 posts ] 

All times are UTC


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

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group