• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Problem - Multiline help (1 Viewer)

Joined
Feb 11, 2018
RedCents
1,165¢
INI:
/multiline ; /target ${Group.Member[1]} ; /timed 5 /cast "Invisibility Versus Undead" ; /timed 90 ; /target ${Group.Member[2]} ; /timed 5 /cast "Invisibility Versus Undead"

Need some help with multiline/timers... I cant for the life of me get it to target member 1, cast, then target member 2, cast...on the same line. I've never really used multiline/timed/delay.

Thanks!
 
Solution
you on the right path, but one thing you gotta do when you are using /timed is count the time from start of the hotkey, as all commands are basically executed as fast as possible, sorta like when you make a social.

If we set it up line for line and count the time:
INI:
/multiline ; 
/target id ${Group.Member[1].ID};               //time 0
/timed 5 /cast "Invisibility Versus Undead";    //time 5
/timed 90 /target id ${Group.Member[2].ID};     //time 90
/timed 5 /cast "Invisibility Versus Undead"     //time 5

So if we follow that, you can see that you got 2 commands firing on the time 5 counter, this is not possible to do.

INI:
/multiline ; 
/target id ${Group.Member[1].ID};               //time 0
/timed 5 /cast "Invisibility Versus...
you on the right path, but one thing you gotta do when you are using /timed is count the time from start of the hotkey, as all commands are basically executed as fast as possible, sorta like when you make a social.

If we set it up line for line and count the time:
INI:
/multiline ; 
/target id ${Group.Member[1].ID};               //time 0
/timed 5 /cast "Invisibility Versus Undead";    //time 5
/timed 90 /target id ${Group.Member[2].ID};     //time 90
/timed 5 /cast "Invisibility Versus Undead"     //time 5

So if we follow that, you can see that you got 2 commands firing on the time 5 counter, this is not possible to do.

INI:
/multiline ; 
/target id ${Group.Member[1].ID};               //time 0
/timed 5 /cast "Invisibility Versus Undead";    //time 5
/timed 95 /target id ${Group.Member[2].ID};     //time 95
/timed 100 /cast "Invisibility Versus Undead"   //time 100

now if you follow that, it goes time0, time5, time95 and finally time100

so based on that we need to make the multiline look like this:

/multiline ; /target id ${Group.Member[1].ID}; /timed 5 /cast "Invisibility Versus Undead"; /timed 95 /target id ${Group.Member[2].ID}; /timed 100 /cast "Invisibility Versus Undead"
 
Solution
Problem - Multiline help

Users who are viewing this thread

Back
Top