General BCC question
Reply
BCC question
Yeah i was wondering if theres away to edit it so that the ; command brakes so i can use more then 1 command per line on a hotkey for example

/bct namehere //target pet ; /bct namehere //stick ;/bct namehere //say buffs
Sun Nov 07, 2010 12:29 pm
Not that I know of

Add something to your macro like

More +

#event hotkey "trigger text"

Sub event_hotkey
/command 1
/command 2
/command 3
/return
Sun Nov 07, 2010 12:49 pm
Project Lead
i would assume the standard mq2 multiline command would work
More +
/multiline ; /bct namehere //target pet;/bct namehere //stick;/bct namehere //say buffs


The spaces around the first ; are used so it know what the delimiter is.

Basically /multiline reads in parameter 0 as the delimiter then the rest of the line is read into as one big string. It then parses for the assigned delimiter and issues the commands one at a time split on the delimiter.
_________________
Sorvani
Sun Nov 07, 2010 4:17 pm
Senior Project Member
That's pretty sexy
Sun Nov 07, 2010 5:53 pm
Project Lead
General BCC question
Reply