Search found 12 matches

by Botmaker
Fri Jun 11, 2004 2:20 pm
Forum: MQ2::Help
Topic: Buff Stacking
Replies: 1
Views: 648

meant to post in macro help not MQ2 help... :(
by Botmaker
Fri Jun 11, 2004 2:18 pm
Forum: MQ2::Macros::Snippets
Topic: spellcast.inc - generic casting include file.
Replies: 41
Views: 21360

might wanna add different return value for spell that didnt take hold on the target (spare the calling macro to check if buff/debuff held:) #event NoHold "#*#Your spell did not take hold.#*#" ... /delay 1 /doevents Fizzle /doevents Interrupt /doevents Interrupt /doevents Recover /doevents ...
by Botmaker
Fri Jun 11, 2004 2:05 pm
Forum: MQ2::Help
Topic: Buff Stacking
Replies: 1
Views: 648

Buff Stacking

People randomly passing by and buffing me, screws up my autobuffing macro~

Is there a way to find out if a buff will not stack (on yourself) before casting it in a macro?

I am thinking of using events and global variable for each buff, but i was wondering if there was a neater way of doing it.
by Botmaker
Thu Jun 10, 2004 4:10 pm
Forum: MQ2::Macros::Requests
Topic: Simple Shaman Bot
Replies: 13
Views: 4302

something like that may work better. i am sure there are many marcro that you can copy/past to slow a mob, i think there is a debuff macro out there that does more then just slow, might wanna check it out :) |Simple shaman bot #include spellcast.inc #event exp "You have gained#*#" Sub Main...
by Botmaker
Mon Apr 19, 2004 5:18 pm
Forum: MQ2::General
Topic: For Lax
Replies: 17
Views: 5025

this should work too

Code: Select all

/newif ${Bool[${Me}]} /echo hello, ${Me}
by Botmaker
Mon Apr 19, 2004 3:19 pm
Forum: Macro Help (MQ1)
Topic: HoTT info
Replies: 0
Views: 712

HoTT info

I couldnt fine any info on how to get Health on Target's Target

I am trying to redesign my HoTT window with class, level etc info in it.
Is there something like ${Traget.Traget.Class} ?
by Botmaker
Mon Apr 19, 2004 10:37 am
Forum: MQ2::Bug Reports
Topic: Buff/debuff descriptions
Replies: 6
Views: 1706

also happens w/ Afterthoughts of Anger in Uqua

I'll try to get a dump the next time i am in uqua... oh in a week or so.
by Botmaker
Thu Apr 15, 2004 1:46 pm
Forum: Macro Depot (MQ1)
Topic: bard stickmob + twisting w downtime and combat v2.1
Replies: 7
Views: 3794

when posting code, click on the lil box that says "Disable Smilies in this post"... otherwize people like bananaboy that dont look at the code will get confused... obviously this is not gonna copy-and-past well... gonna let you figure it out... Sub Sing /varset SingTime @CASTTIME /if (n @P...
by Botmaker
Thu Apr 15, 2004 1:19 pm
Forum: Macro Help (MQ1)
Topic: Errors in macro, help please.
Replies: 2
Views: 981

from a purely syntatic point, your are missing a vlue to comapre @param0 with, and a ')' gonna go ahead and assume that the value to compare is 8 ;) Sub Sing /varset SingTime @CASTTIME /if (n @Param0<1 || n @Param0>[color=red]8)[/color] { /if n @Debug==1 { /echo "Returning without singing, you ...
by Botmaker
Thu Apr 15, 2004 12:03 pm
Forum: Macro Help (MQ1)
Topic: Easy Question
Replies: 4
Views: 1208

yes, your /return will go back where your you called /doevents

imo it's dangerous /delay anything for long periods of time... what if you get jumped? you'll get beaten for 6m ;)
by Botmaker
Thu Apr 15, 2004 11:56 am
Forum: Macro Help (MQ1)
Topic: how to consider a mob?
Replies: 7
Views: 1685

actually, to take care of the first 5 levels ~

Code: Select all

/declare x local 
/declare y local 
/if n $char(level)<=5 {
    /varset x 1
} else {
    /varset x $calc($char(level)-5) 
}
/varset y $calc($char(level)+1) 
by Botmaker
Thu Apr 15, 2004 9:23 am
Forum: Macro Help (MQ1)
Topic: target cycle npc and pc?
Replies: 4
Views: 1232

target cycle npc and pc?

hi, the last patch introduceded target cycle npc and target cycle pc.

i know how to use it in a macro with /sendkey, but is there any ways i can use it with /keypress?

thx