Search found 15 matches

by DaRoot
Wed Oct 23, 2002 1:06 pm
Forum: Outdated Macros::Macro Help
Topic: Adding a random delay
Replies: 2
Views: 1234

maybe try...

/delay $rand(1,10)

or

/delay $rand 1 to 10

I dont thing specifying the delay to 10 first would work because the script is going to process your /delay 10 and pause for 10 sec before moving on to your /delay $rand part.

dont know if any of the above two will work, but its worth a try
by DaRoot
Mon Oct 21, 2002 6:15 am
Forum: Outdated Macros::Macro Help
Topic: /call Buyitem
Replies: 2
Views: 1216

the $p0 refers to the number you put after /call buyitem # the /for statement is used to a range of variables if you know what slot the item is in you can simplify it by telling the macro to /click left merchant # (where # refers to the merchant slot) then /click left merchant buy. not sure, but the...
by DaRoot
Fri Oct 18, 2002 11:40 pm
Forum: Outdated Macros::Macro Help
Topic: I can't get my /click left command to work
Replies: 9
Views: 2225

ok so merchant window comes up... What does it do next, does it just attempt to continue with the rest of the script, or does it return an error message in the chat box like Usage: /click <left|right> <mouseloc> if it continues then you may need to add a delay before or after the actual clicking, as...
by DaRoot
Thu Oct 17, 2002 11:49 pm
Forum: Outdated Macros::Macro Help
Topic: I can't get my /click left command to work
Replies: 9
Views: 2225

Did you define the merchant in the beginning of your script?

Also before you can click on any merchant slots, the merchant window has to be open. Make sure you've got a

/target MERCHANT
/press u

before you attempt to click on the slots.
by DaRoot
Tue Oct 15, 2002 6:14 pm
Forum: Outdated Macros::Macro Help
Topic: Please tell me why this doesnt work. =)
Replies: 5
Views: 1201

Ok I'm no expert at bard songs... but it looks like your getting caught up in the mainloop where you have Sub Main /call sing1 :mainloop /doevents /goto :mainloop this is telling MQ to call the sub sing1, do whats in there, then in the sing1 sub your telling to go back to :mainloop, do the event the...
by DaRoot
Tue Oct 15, 2002 3:14 pm
Forum: Outdated Macros::Macro Help
Topic: i needs helps
Replies: 7
Views: 1868

yes... delay's play a big part if your on a slow pc, try delay 1 inbetween /click left merchant and one between each /call. also make sure the merchant window is open, easily done by adding /press u at the top (that is if the merchant is targeted of course) if that doesnt work. please tell what exac...
by DaRoot
Tue Oct 15, 2002 3:08 pm
Forum: Outdated Macros::Macro Help
Topic: Maximizing Cheese PPH
Replies: 6
Views: 2061

bumped :P
by DaRoot
Tue Oct 15, 2002 3:08 pm
Forum: Outdated Macros::Macro Help
Topic: Writing new mac...need help
Replies: 5
Views: 1129

bumped :P
by DaRoot
Tue Oct 08, 2002 2:19 am
Forum: Outdated Macros::Macro Help
Topic: Maximizing Cheese PPH
Replies: 6
Views: 2061

all merchants inv goes something like this:

0 1
2 3
4 5
6 7

and when you hit /click left merchant down the order starts all over with the 0 slot being the top left hand corner.
hope that clarifies it.
by DaRoot
Tue Oct 08, 2002 2:15 am
Forum: Outdated Macros::Macro Help
Topic: Writing new mac...need help
Replies: 5
Views: 1129

I think the problem is setting the combiner to $v80, I using the basic code Sub Main /call FindCombiner /if $return==99 /return /varset $v80 $return /click right $v80 Sub FindCombiner /varset v10 99 /for v99 0 to 7 /if "$pack($v99,combine)"=="$p0" /varset v10 $v99 /next v99 /retu...
by DaRoot
Sun Oct 06, 2002 6:07 pm
Forum: Outdated Macros::Macro Help
Topic: Can't open merchants??? [resolved]
Replies: 4
Views: 1107

Hey thanks bio!! the /press u
works pretty good, even fixed the resolution problem I was having.

thanks for the help
by DaRoot
Sun Oct 06, 2002 5:40 pm
Forum: Outdated Macros::Macro Help
Topic: Writing new mac...need help
Replies: 5
Views: 1129

Ok no code will do.

Any ideas on the FindCombiner part?

[EDIT] actually I wasnt reffering to posting the whole code, just the findcombiner piece that I'm using. I wont give it away that easy.
by DaRoot
Sun Oct 06, 2002 4:06 am
Forum: Outdated Macros::Macro Help
Topic: Writing new mac...need help
Replies: 5
Views: 1129

Writing new mac...need help

Ok I'm trying to write a new script to buy,make,sell products to raise skills. I fixed the problem I had with opening merchants (kinda) but now I have a problem with the find combiner part???. I've tried every FindCombiner code on the board, currently using the routines.mac code, and get "you d...
by DaRoot
Sun Oct 06, 2002 3:46 am
Forum: Outdated Macros::Macro Help
Topic: Can't open merchants??? [resolved]
Replies: 4
Views: 1107

currently I'm usin 1024 x 768

but the weird thing is, no matter what res I start with I have to change it
i.e. if I start in 1024 and run the mac it wont work, but when I change the
game res through the cycles back to 1024 it works.

dont know why, maybe just my comp, but that what works so....
by DaRoot
Sat Oct 05, 2002 10:44 pm
Forum: Outdated Macros::Macro Help
Topic: Can't open merchants??? [resolved]
Replies: 4
Views: 1107

Can't open merchants??? [resolved]

Ok, kinda new to MQ, but not new to programming basics. In my code, when I input commands to select the merchant and right click it gives me the old "Usage:Click <right|left> <mouseloc>" the code is pretty simple: #define MERCHANT Soandso Sub Main /target MERCHANT /click right target /end ...