• 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 --->

Question - Camp on Death (1 Viewer)

Joined
Mar 7, 2014
RedCents
60¢
How do you make "camp on death" to /exit instead of /camp?
I noticed that your res timer continues while you're at the character select screen when you camp after you die, so even if you camp if your late after 3 hours you cant res your body
So I want to change it from /camp on death to /exit on death, which file do I edit to do that, and can you please show me the text line i'd have to modify and how to ? Please, I'm a dummy so I can use all the detail as I can get

thank you
 
Here is the code in KissAssist you will want to change

Rich (BB code):
| ----------------------------------------------------------------------------
| SUB: Do I Camp
| ----------------------------------------------------------------------------
    Sub DoICamp
        /if (!${CampOnDeath}) /return
        /if (!${CampOnDeathTimer} && ${CampZone} != ${Zone.ID} && ${Me.Buff[Revival Sickness].ID}) {
            /echo I am dead and not where I am suppose to be. Time to camp out.
            /docommand /exit
            /delay 40s
            /endmac
        }
    /return

you could also change the /camp to /camp desktop

Change the highlighted line.
 
This has been changed to "/camp desktop" in case anyone else looks this up like I did.

INI:
| ----------------------------------------------------------------------------
| SUB: Do I Camp
| ----------------------------------------------------------------------------
    Sub DoICamp
        /if (!${CampOnDeath}) /return
        /if (!${CampOnDeathTimer} && ${CampZone} != ${Zone.ID} && ${Me.Buff[Revival Sickness].ID}) {
            /echo I am dead and not where I am suppose to be. Time to camp out.
            /if (${IAmABard}) {
                /while (${Me.BardSongPlaying}) {
                    /if (${Twist}) /squelch /twist off
                    /stopsong
                    /delay 10
                }
            }
            /docommand /camp desktop
            /delay 40s
            /endmac
        }
    /return
 
Question - Camp on Death

Users who are viewing this thread

Back
Top