Rich (BB code):
[Socials]
Page2Button1Name=MultiCast
Page2Button1Color=13
Page2Button1Line1=/multiline ; /casting "Envenomed Bolt" ; /timed 50 /casting "Imprecation"
Is a hotkey I've made on my Necromancer. This INI is found in your root everquest folder. In my case it's A:\Program Files\Everquest
The ini file is CharName_servername.ini
So if your characters name is HarryPotter and you play on EMar. HarryPotter_erollisi.ini
Find the section called [Socials]
Page#Butting# is corresponding page number, followed by the button number in question. In this case it's page 2 first button. It's assigned a name, a color that the name shows up as and then the actual commands are listed by line. In this case I only have the single line. But let me show you what triggers this line.
Rich (BB code):
Page2Button1Name=AllAssist
Page2Button1Color=13
Page2Button1Line1=/bct Shaman //multiline ; /stick end ; /bct necromancer //stick end
Page2Button1Line2=/bca //assist ${Group.MainTank}
Page2Button1Line3=/bct Rogue //stick behind loose 5
Page2Button1Line4=/bct Cleric //stick behind loose 5
Page2Button1Line5=/bct ${Me.Name} //multiline ; /keypress 8 ; /bct necromancer //pet attack
Your socials can link to each other and issue multiple commands to multiple characters at the same time through the use of EQBC in the fashion shown above. Because if we recall, //multiline issues all the commands at the same time without a delay. So I'm effectively telling the shaman to issue a multi line that ends their own stick and then has the shaman tell the necromancer to stop sticking as well. I could have just done /multiline ; /bct shaman //stick end ; /bct necromancer //stick end which would have made both commands come from my character. But I digress. There are many ways to skin a cat.
the second line tells everyone on my EQBC server to assist me.
then I tell my rogue to stick behind loosely at a range of 5.
Then I tell my cleric to do the same.
The I tell -myself- to issue a multiline command that presses my hotkey 8 and tells the necromancer to send their pet in to attack.
So what is hotkey 8.
Rich (BB code):
Page2Button3Line1=/bct Shaman //keypress 2
Page2Button3Line2=/bct Necromancer //multiline ; /casting "Envenomed Bolt" ; /timed 50 /casting "Imprecation" ; /timed 50 /casting "Feign Death" ; /timed 100 /stand
So I tell my shaman to hit their 2nd hotkey (which is alot like line2 for the necromancer, but it's stored locally on their hotkey. I -should- have left it on my SK so that I could edit it without switching boxes as needed. But, again, I digress.
So now what is the shaman's 2nd hotkey?
Rich (BB code):
Page2Button2Name=ChainCast
Page2Button2Color=0
Page2Button2Line1=/multiline ; /casting "Plague of Insects" ; /timed 60 /casting "Envenomed Bolt" ; /timed 110 /casting "Anathema"
So this is the shaman's hotkey. So When it's called it hits the hotkey "ChainCast" which will chain cast his spells that I want hit to cast.
So next question is....why not just use KA?
Well, I like to be in control of all my characters, even if I'm just issuing commands.
Instead of editing an INI and having everything automated I can directly control what the characters do. This isn't something everyone would want/need to do. But typically I'm programming something for myself/others and just running KA wouldn't reflect me actually participating in doing anything constructive. If I do "play" the game. I want to be in control.
So hopefully this is a sufficient amount of information to show you what can be done with /timed in a /multiline. Keep in mind that all spells being casted have a cast time and a global cooldown time of 2 seconds. So when you /casting you need to add 20 to any number on a following /timed.
So in my shaman's multiline Plague of Insects is 4 second cast time, add 2 second global cooldown, so the following command should be issued at a /timed of 60. Then Envenomed Bolt is a 3 second cast time followed by a 2 second delay for the global cooldown, so 30+20+any previous delay from a timed command, making it 30+20+60 to make a total of 110 before I can cast Anathema.
I could probably put everything on a single line if I really wanted to do so. Just didn't care to do that.