Resurrecting menu

User Tag List

Thread: Resurrecting

Results 1 to 10 of 10
  1. #1
    Viano's Avatar Active Member
    Reputation
    37
    Join Date
    May 2008
    Posts
    172
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Resurrecting

    Hi all,

    how do you resurrect in your bots? Just checking if healt is zero and then run to corpse and if at corpse than spam Enter? Or ist there something else that might help me?
    Viano

    Resurrecting
  2. #2
    lakkano's Avatar Active Member
    Reputation
    24
    Join Date
    Feb 2008
    Posts
    101
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The bots that do ressurect, normally got an option to do it, if they don't got an option for it, you'd have to do it manually I guess.

    If that's what you thought about.

  3. #3
    Hunterplay's Avatar Contributor
    Reputation
    158
    Join Date
    Jun 2008
    Posts
    927
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Shoulden't this be some where else?...
    Former News Team Member

  4. #4
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Catch the PLAYER_DEAD event, call RepopMe(), run to your corpse, call RetrieveCorpse().

  5. #5
    Viano's Avatar Active Member
    Reputation
    37
    Join Date
    May 2008
    Posts
    172
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    Catch the PLAYER_DEAD event, call RepopMe(), run to your corpse, call RetrieveCorpse().
    And RetrieveCorpse() is a LUA function? Ok, so I have to figure out how to call those. Thank you.
    Viano

  6. #6
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    if (ObjectManager.Me.Dead)
    {
        Lua.DoString("RepopMe()");
        while(ObjectManager.Me.OutOfBounds)
            Thread.Sleep(500);
    }
    
    if (ObjectManager.Me.Ghost)
    {
        // Find the spirit healer
        var spirithealer =
            (from b in ObjectManager.NpcObjectList.Values where b.Entry == 6491 select b).FirstOrDefault();
    
        if (spirithealer != null)
        {
            // Interact with the healer
            spirithealer.Interact();
        }
    
            Thread.Sleep(2000);
    
        #region Dirty Region, will change it so it runs back later ;)
    
        // Press the accept button and accept the durability loss
        Lua.DoString("SelectGossipOption(1) AcceptXPLoss()");
    
        if (ObjectManager.Me.Alive)
        {
            Thread.Sleep(2000);
            Mount.MountUp();
    
            // Wait for 10 minutes
            Thread.Sleep(10000 * 60);
        }
    
        #endregion
    
        return;
    }
    Here's how i do it atm it's a little dirty will make it run back in a mom
    hope this helps
    Last edited by Nesox; 07-09-2009 at 01:10 PM.

  7. #7
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nesox View Post
    Code:
    if (ObjectManager.Me.Dead)
    {
        Lua.DoString("RepopMe()");
        while(ObjectManager.Me.OutOfBounds)
            Thread.Sleep(500);
    }
    
    if (ObjectManager.Me.Ghost)
    {
        // Find the spirit healer
        var spirithealer =
            (from b in ObjectManager.NpcObjectList.Values where b.Entry == 6491 select b).FirstOrDefault();
    
        if (spirithealer != null)
        {
            // Interact with the healer
            spirithealer.Interact();
        }
    
            Thread.Sleep(2000);
    
        #region Dirty Region, will change it so it runs back later ;)
    
        // Press the accept button and accept the durability loss
        Lua.DoString("SelectGossipOption(1) AcceptXPLoss()");
    
        if (ObjectManager.Me.Alive)
        {
            Thread.Sleep(2000);
            Mount.MountUp();
    
            // Wait for 10 minutes
            Thread.Sleep(10000 * 60);
        }
    
        #endregion
    
        return;
    }
    Here's how i do it atm it's a little dirty will make it run back in a mom
    hope this helps
    You jsut pwned my eyes with the sleeps. Why don't you hook into events and repop when the gossip window appears?

  8. #8
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol. Thread sleeps ftw. That's totally not a potential performance issue or potential bug waiting to happen. *cough*

  9. #9
    Viano's Avatar Active Member
    Reputation
    37
    Join Date
    May 2008
    Posts
    172
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I wanted to say thank you again, I have only basic idea about reversing but with information from this forum and posted offsets I am able to write my own bot. This will help me to overcome my WoW addiction so I can say that Cypher, Kynox, Shynd and all knowledge contributors here are real heros

    Will be posting screenshots soon.
    Viano

  10. #10
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    You jsut pwned my eyes with the sleeps. Why don't you hook into events and repop when the gossip window appears?
    i might O.o

    Originally Posted by Cypher View Post
    Lol. Thread sleeps ftw. That's totally not a potential performance issue or potential bug waiting to happen. *cough*
    o.O

Similar Threads

  1. Scroll of Resurrection Offer!
    By derekwoods in forum World of Warcraft General
    Replies: 0
    Last Post: 12-17-2007, 01:17 PM
  2. Want to resurrect and not a GM?
    By Wildslayer in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 12-10-2007, 06:27 PM
  3. Block resurrection of the opposite faction in battle grounds
    By Matt in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 06-08-2006, 03:19 AM
  4. Resurrect inside an Instance
    By Matt in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 05-01-2006, 10:21 AM
  5. Unlimited resurrection in a dungeon
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 04-24-2006, 06:07 AM
All times are GMT -5. The time now is 06:38 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search