Need advance tips from a pro macro programmer

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

Message
Author
nyae3000
Noob
Noob
Posts: 10
Joined: 01 Jan 2011, 22:33
Noob?: No

Need advance tips from a pro macro programmer

#1 Post by nyae3000 »

Is there any command to make the macro response faster. B'cause i wanted to dodge fast cast asura with hide skill. I'm using the console text to trigger the macro but still the macro response time is slow. the asura already hit me b4 it triggered. Sorry for the bad english. hope anyone can help me here. Thanks in advance :D

this is my code

Code: Select all

automacro Hiding {
delay 0
console /is casting Asura Strike on you/i
priority 0
exclusive 1 
run-once 1
call AutoHide
}

macro AutoHide {
do ss 51
do eq Orlean's Gloves [Zerom] [1]
do eq Orlean's Gloves [Smokie] [1]
release Hiding
}

User avatar
4epT
Developers
Developers
Posts: 617
Joined: 30 Apr 2008, 14:17
Noob?: No
Location: Moskow (Russia)
Contact:

Re: Need advance tips from a pro macro programmer

#2 Post by 4epT »

try this:

Code: Select all

macro AutoHide {
 [
  do ss 51
  do eq Orlean's Gloves [Zerom] [1]
  do eq Orlean's Gloves [Smokie] [1]
  release Hiding
 ]
}
All my posts are made by machine translator!
¤ Manual ¤ Anti BotKiller ¤ Packet Extractor v3 ¤
Image
Image

nyae3000
Noob
Noob
Posts: 10
Joined: 01 Jan 2011, 22:33
Noob?: No

Re: Need advance tips from a pro macro programmer

#3 Post by nyae3000 »

4epT wrote:try this:

Code: Select all

macro AutoHide {
 [
  do ss 51
  do eq Orlean's Gloves [Zerom] [1]
  do eq Orlean's Gloves [Smokie] [1]
  release Hiding
 ]
}
this happens when i put this " [ ] "

[macro] automacro Hiding triggered.
Unable to cast skill Hiding in 3 tries.
[100/ 97] Player IMMAKILLYOUNIGGA (0) uses Asura Strike (Lv: 5) on you (Dmg:
3675) (Delay: 218ms)

Any fix for this error? " Unable to cast skill Hiding in 3 tries. "

matindi
Noob
Noob
Posts: 3
Joined: 09 Oct 2014, 01:59
Noob?: No

Re: Need advance tips from a pro macro programmer

#4 Post by matindi »

nyae3000 wrote:Is there any command to make the macro response faster. B'cause i wanted to dodge fast cast asura with hide skill. I'm using the console text to trigger the macro but still the macro response time is slow. the asura already hit me b4 it triggered. Sorry for the bad english. hope anyone can help me here. Thanks in advance :D

this is my code

Code: Select all

automacro Hiding {
delay 0
status not Hiding <------ put this to trigger only when not in Hiding status
console /is casting Asura Strike on you/i
priority 0
exclusive 1 
run-once 1
call AutoHide
}

macro AutoHide {
do eq Orlean's Gloves [Zerom] [1]
do eq Orlean's Gloves [Smokie] [1]
do ss 51
pause 5 <------ to hide for 5 seconds
release Hiding
stop <------ to stop the automacro
}

Post Reply