Search found 19 matches

by weezurd
Mon Jan 17, 2005 6:08 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

got it. here is the final code for anyone interested: #include spell_routines.inc #event Hailed "#1# says, 'Hail, <Your-Name-Here>'" Sub Main /echo Raid TL Macro has now started.. /declare transspell string outer /declare spellgem int outer 9 /declare RequestorID int outer /declare QueueMa...
by weezurd
Mon Jan 17, 2005 5:27 am
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

thanks much Zeus. i redid some things and as of now its not missing any hails and is adding all to the queue. but now for some reason it does not tl anyone past the second person added to the queue. here's an example: Adding Player1 to the translocation queue. Successfully added Player1 to slot 1 of...
by weezurd
Mon Jan 17, 2005 1:39 am
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

i changed it around a bit to try to eliminate being stuck in a sub by removing the spell_routines.inc and by using regular /cast spellname to see if it would help and it seems to take care of the not picking up of names. but im still having a problem with the dequeing it seems. it seems like the mac...
by weezurd
Sun Jan 16, 2005 11:54 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

ok i figured it out. the problem its having now is not being able to add people to the queue during the translocating. so it kinda defeats the purpose of this.. is it something im doing wrong? whats happening now is if someone hails while its translocating someone it misses them and adds the next pe...
by weezurd
Sun Jan 16, 2005 11:44 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

shouldnt /varset ReturnValue QueueArray[0] and /echo Retrieved: ${ReturnValue} return the chars name who hailed? the macro is echoing "Retrieved: QueueArray[0]" i changed it to /varset ReturnValue ${QueueArray[1] and it seems to work. its at least returning the name of the last person to ...
by weezurd
Sun Jan 16, 2005 11:18 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

shouldnt

Code: Select all

/varset ReturnValue QueueArray[0] 
and

Code: Select all

/echo Retrieved: ${ReturnValue} 
return the chars name who hailed?

the macro is echoing "Retrieved: QueueArray[0]"
by weezurd
Sun Jan 16, 2005 11:11 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

/for Counter 0 to (${QueueSize}-1) I never tried parentheses in /for loops, but if that doesn't work /for Counter 0 to ${Math.Calc[${QueueSize}-1]} should. I tried (${QueueSize}-1) and that did not work so i went ahead and tried the math.calc way and that doesnt work either. i also added the decrem...
by weezurd
Sun Jan 16, 2005 6:21 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

Also, in your dequeue event, it doesn't seem to decrement your queue after retrieving the next queue item. this is the problem i am having now.. i am not sure what i am doing wrong in the dequeue sub. right now this is what it says when testing the macro: [MQ2] Retrieved: QueueArray[0] /varset 'Que...
by weezurd
Sun Jan 16, 2005 1:23 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

ok i think i got the add to queue part working but im stuck on the dequeue part. could anyone pls tell me what im doing wrong? #include spell_routines.inc #event Hailed "#1# says, 'Hail, <Your-Name-Here>" Sub Main /echo Raid TL Macro has now started.. /declare transspell string outer /decl...
by weezurd
Sun Jan 16, 2005 7:00 am
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

ok thanks. having a little trouble, not sure if i'm going about this correctly. i think im understanding the concept, but i'm getting errors. the error im getting is varset failed, variable QueueArray(QueueSize) not found. when i try to declare the variable QueueArray(QueueSize) it just does nothing...
by weezurd
Sat Jan 15, 2005 8:51 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

thanks for the queue code, but i've been trying to understand it and just can't figure out how to incorperate it and have it do what i would like it to do.

would anyone be so kind to explain how it works for me or possibly help me piece this together. would greatly appreciate the help
by weezurd
Sun Jan 09, 2005 7:40 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

tested the macro. as of now if someone hails for a tl while im in the middle of tling and someone hails me when it finishes, it will skip the previous person and tl the last person to hail me.

any advice on fixing this?
by weezurd
Sun Jan 09, 2005 6:12 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

the wizard was set up at the time portal and anytime a raid was called the wizard was put up. works well, I dont see a difference in anything that you are trying to do there is a huge difference. the macro i created (with the help from a few ppl here, thanks!) resonds to hails and doesnt require le...
by weezurd
Sat Jan 08, 2005 5:52 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

ok, so here is what i have so far: #include spell_routines.inc #event Hailed "#1# says, 'Hail, <Your-Name-Here>" Sub Main /echo TL Macro has now started.. /declare transspell string outer /declare RequestorID int outer /declare spellgem int outer 9 /if (!${Defined[Param0]}) { /echo Error, ...
by weezurd
Sat Jan 08, 2005 5:47 pm
Forum: MQ2::Macros::Help
Topic: auto tl macro
Replies: 40
Views: 9619

would doing this eliminate the need for the else with the 10s delay?