Search found 5 matches

by dencelle
Wed Oct 16, 2013 5:27 pm
Forum: MQ2::Help
Topic: Using Group TLO and merc question.
Replies: 10
Views: 1068

Re: Using Group TLO and merc question.

I always target using IDs rather than names /target id ${Spawn[ID ${Group.Member[${GID}].ID}]} Always told it was best practice to do that. why even bother with spawn? /target id ${Group.Member[GID].ID} and ${Group} = number of group members without you /For GID 0 to ${Math.Calc[${Group.GroupSize}-...
by dencelle
Wed Oct 16, 2013 11:09 am
Forum: MQ2::Help
Topic: Using Group TLO and merc question.
Replies: 10
Views: 1068

Re: Using Group TLO and merc question.

your right... fixed that -.- idk what i was thinking... =\ lol
by dencelle
Wed Oct 16, 2013 2:10 am
Forum: MQ2::Help
Topic: Using Group TLO and merc question.
Replies: 10
Views: 1068

Re: Using Group TLO and merc question.

/declare GID int outer 0 /declare HealPct int outer 70 /declare MemGem int outer 8 /declare HealingSpell string outer "Minor Healing" Sub Main /Call DoGroupCheck /return Sub DoGroupCheck /For GID 0 to ${Math.Calc[${Group.GroupSize}-1]} { /target ID ${Group.Member[${GID}].ID} /call Memspel...
by dencelle
Thu Sep 26, 2013 11:05 am
Forum: MQ2::Help
Topic: trying my first macro
Replies: 6
Views: 1204

Re: trying my first macro

| MyBot by WizeOne | ver 0.02 | 9/25/13 #event Invite "#1# invites you to join a group." Sub Main /echo MyBot Loaded :mainloop /doevents /goto :mainloop /return Sub Event_Invite(string Line, string Inviter) /echo ${Inviter} invited me! /if (${Select[${Inviter},Char1,Char2,Char3,Char4,Char...
by dencelle
Wed Sep 25, 2013 11:33 am
Forum: MQ2::Help
Topic: trying my first macro
Replies: 6
Views: 1204

Re: trying my first macro

| MyBot by WizeOne | ver 0.02 | 9/25/13 #event Invite "#1# invites you to join a group." Sub Main /echo MyBot Loaded :mainloop /doevents /goto :mainloop /return Sub Event_Invite(string Line, string Inviter) /echo ${Inviter} invited me! /if ((${Inviter.Equal[ThisChar]}) || (${Inviter.Equal...