• 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 --->
  • Unfortunately, yes, there is a suspension wave happening around the new tlp launch. :'( Please keep regular discussion to Suspension MegaThread and please consider submitting a Suspension report to RG.

Recent content by ystervarkie

  1. Y

    Zone.ID question.

    I used this macro to generate the initial piggyzone.ini file when I redid mine from scratch. It puts them all into a log file in the \Logs directory. You could modify the /mqlog line to output it in whatever format you want. |generate_zones.mac sub Main /declare a int outer 1 /declare...
  2. Y

    quick target question

    How about just an /if command, like so: /if (${Spawn[pc TankName].ID}) { /call Cast DS_Spell } It basically says: If the person is in the zone, then cast the DS spell.
  3. Y

    Buff name help

    How about this (untested, but it should work): #include spell_routines.inc /if (${Spell[Elixir of Speed].Stacks} && ${FindItem[Elixir of Speed].ID}) { /call Cast "${FindItem[Elixir of Speed].Name}" item } The way it works is like this: The if line checks if the Elixir of Speed buff stacks...
  4. Y

    Best way to determine aggro

    ${Me.Combat} will always be true if you have turned attack on, but will be false if you're under attack. ${Melee.GotAggro} is part of the MQ2Melee plugin and should be a relatively good indicator of whether you have aggro. To use it, you can do something like this in your macro: /if...
  5. Y

    macro issue

    Check the wiki here for all the info you need. However the VIP version is a bit faster and smaller, so I'd recommend setting up MQ2Exchange.
  6. Y

    macro issue

    That is correct. Although you may want to use the Stacks member to check your bufffs, so that it won't cast it if you have a buff that overwrites Elixir of Speed X. So try the following: /if (${FindItem[Distillate of Alacrity X].InvSlot} && ${Spell[Elixir of Speed X].Stacks}) This means...
  7. Y

    macro issue

    You have an extra ( on this line, which will break the macro. /if ((${Target.PctHPs}<98) /autofire on Try posting the errors that you get, then it'll be easier for people to help you.
  8. Y

    Anyone else CTD or Char Sel when /zone rage?

    Your piggyzone.ini is slightly wrong, since yours has 389 missing, and the rest of them are shifted down by 1. That'll probably cause some problems with north and south ro, but shouldn't cause any problems with zoning to rage. I've included mine, but I've not been able to test the PoR zones...
  9. Y

    Anyone else CTD or Char Sel when /zone rage?

    Could you post the lines beginning 370 to 393 from your piggyzone.ini?
  10. Y

    Anyone else CTD or Char Sel when /zone rage?

    Is rage an instanced zone? Because you can't /zone to or from instanced zones.
  11. Y

    Possible New Expansion Zone Names

    So I was trying to figure out why my piggyzone.ini kept trying to zone me to a zone called "crescent" (and why some other chain zones wouldn't work), leading me to create a quick macro to spit out all the Zone IDs, shortnames and long names in piggyzone format, so I could experiment a bit...
  12. Y

    Target Problem

    This is a feature of the /target command, that it matches on partial names (for speed reasons). I haven't tested it, since I don't have two characters where one's name is part of another's name, but this should work. In the macro, search for the line /target ${targetType} ${targetName}...
  13. Y

    Warp Detection... READ!!!

    Well all text sent from you to the server (eg. /say, /shout, attack messages, etc) has a numbered category assigned to it. You can see most of the categories by going into the options - colours and seeing what things you're able to change the colours of. These numbered categories are what your...
  14. Y

    Warp Detection... READ!!!

    The way I see it is this: 1. There are threads on many message boards (class-specific and server-specific) related to warps, ghosting, /zone and the transfer of no-drop items. People are a lot more aware of ShowEQ, MQ2 and the types of hacks/plugins you can get for it. A lot more aware than...
  15. Y

    Warp Detection... READ!!!

    Pretty easy really, they have a look if there's a spell cast right before the warp/succor/gate. Anyway, just because you haven't been caught/banned yet, doesn't mean they haven't picked up you are cheating. They may be saving up all the bans to administer in one big swoop, rather than banning...
Back
Top