• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Auto respawn?

Joined
Nov 11, 2020
RedCents
201¢
Hello, I was wondering if there was a plugin for auto respawning when you die. I am trying to Develev a toon and dont want to keep pressing respawn all the time. Thanks in advance.
 
Here is a simple macro I mad to Sac a character down to level 85. I have a group of characters I keep at 85. See if this helps, you run it at your bind point (in a zone you can Sac in). Maybe some of the code will help you.

INI:
Sub Main
  /declare Sacee     string      outer

:whoami
    /varset Sacee ${Target.CleanName}
    /if (${Me.CleanName.Equal[NecroName]}) /goto :Sacer
    /if (${Me.Level}>85) /goto :Sacee
    /end
   
:Sacer
    /autoinventory
    /if (${Me.PctMana} < 10) /goto :ManaCheck
    /target ${Sacee}
    /if (${Target.Level}<86) /end
    /if (!${Me.Casting.ID}) /cast Sacrifice
    /delay 45
    /goto :Sacer
    /end
   
:Sacee
    :WaitForSac
     /delay 1s
     /if (!${Window[ConfirmationDialogBox].Open}) /goto :WaitForSac
     /delay 5
     /notify ConfirmationDialogBox Yes_Button leftmouseup
    /delay 10
    /squelch /notify RespawnWnd RW_SelectButton leftmouseup
    /goto :WaitForSac
    /end

:ManaCheck
    /sit
    :WaitForMana
    /delay 5s
    /if (${Me.PctMana} < 98) /goto :WaitForMana
    /stand
    /goto :Sacer

/end
 
Question - Auto respawn?

Users who are viewing this thread

Back
Top
Cart