pet problems how can i fix? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    godofwar's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    pet problems how can i fix?

    any ideas on how to fix a problem where i can tame pets, but when i log off the pet is gone when i log back in?
    6):WoW Junkie

    pet problems how can i fix?
  2. #2
    Airwavez's Avatar Active Member
    Reputation
    68
    Join Date
    Jul 2007
    Posts
    300
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    ALTER TABLE `playerpets` DROP COLUMN `loyalty`;
    ALTER TABLE `playerpets` ADD COLUMN `happiness` int(11) NOT NULL default '0';
    ALTER TABLE `playerpets` ADD COLUMN `happinessupdate` int(11) NOT NULL default '0';
    ALTER TABLE `playerpets` ADD COLUMN `loyaltypts` int(11) NOT NULL default '0';
    ALTER TABLE `playerpets` ADD COLUMN `loyaltyupdate` int(11) NOT NULL default '0';
    ALTER TABLE `playerpets` ORDER BY ownerguid, petnumber, name, entryid, data, xp, active, level, happiness, actionbar, happinessupdate, summon, autocastspell, loyaltypts, loyaltyupdate;
    UPDATE `playerpets` SET `happiness` = '0';
    UPDATE `playerpets` SET `happinessupdate` = '0';
    UPDATE `playerpets` SET `loyaltypts` = '0';
    UPDATE `playerpets` SET `loyaltyupdate` = '0';
    use that Query on your database, it should work.

  3. #3
    slyfox101's Avatar Member
    Reputation
    40
    Join Date
    Jul 2007
    Posts
    330
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    Y'know what Dark, I've seen you around the forums and you seem to know your stuff, and you help people a lot, so I'm just going to give you a free reputation point. I'm extremely bored, and I think you should get one for helping so many people without getting anything in return.
    Since I no longer fear getting banned, judging by what MMOwned has become, I'll start being honest now.

  4. #4
    ScottyBoy's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    i too have been having this same issue but i dont understand what it means by the owner guide and so on and so forth so any translation help would be great, thank you for your time.

  5. #5
    Deathdamian's Avatar Member
    Reputation
    6
    Join Date
    Mar 2007
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    you know what sky ive noticed that to +rep dark

  6. #6
    Airwavez's Avatar Active Member
    Reputation
    68
    Join Date
    Jul 2007
    Posts
    300
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    ty all

    I really appreciate it

  7. #7
    ScottyBoy's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    i need a little more explanation on this part ALTER TABLE `playerpets` ORDER BY ownerguid, petnumber, name, entryid, data, xp, active, level, happiness, actionbar, happinessupdate, summon, autocastspell, loyaltypts, loyaltyupdate;

  8. #8
    slyfox101's Avatar Member
    Reputation
    40
    Join Date
    Jul 2007
    Posts
    330
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    What the...

    Who is Sky?

    Ontopic: What exactly don't you understand about it...?

    To use it: Execute it as a query.

    What is it: It's just an update to your database compiled by someone who knows MySQL. MySQL is a coding language, along with MmSQL. Although there are thousands of coding languages. :l2p:
    Since I no longer fear getting banned, judging by what MMOwned has become, I'll start being honest now.

  9. #9
    ScottyBoy's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    i dont know what to add in each of the following catagories `playerpets` ownerguid, petnumber, name, entryid, data, xp, active, level, happiness, actionbar, happinessupdate, summon, autocastspell, loyaltypts, loyaltyupdate;

  10. #10
    Airwavez's Avatar Active Member
    Reputation
    68
    Join Date
    Jul 2007
    Posts
    300
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    Heres what you do:


    Open up navicat or w/e you use

    Click on your database

    now you should see an option that says Query

    now click that


    then you should find a button that says "New Query"
    click it

    copy the query code i posted above.

    Click run

    PRESTO!
    your done

  11. #11
    ScottyBoy's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    ok sweet thanx

  12. #12
    Airwavez's Avatar Active Member
    Reputation
    68
    Join Date
    Jul 2007
    Posts
    300
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    no problemo matey

  13. #13
    ScottyBoy's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    i tried to do that yet i still cant keep my pet after i log out is there maby something else i need to do?

  14. #14
    Airwavez's Avatar Active Member
    Reputation
    68
    Join Date
    Jul 2007
    Posts
    300
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    gimme your revision, db, and all that info

  15. #15
    ScottyBoy's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: pet problems how can i fix?

    this is my first time making a server, so how would i find and be able to get all of that info for you??

Page 1 of 2 12 LastLast

Similar Threads

  1. [Trinity] Trinity error, how can I fix this?
    By Turtleking in forum WoW EMU Questions & Requests
    Replies: 0
    Last Post: 12-21-2013, 11:55 PM
  2. How can i fix some spells?
    By damar in forum WoW EMU Questions & Requests
    Replies: 4
    Last Post: 09-16-2009, 12:45 PM
  3. How can i fix the hair when doing TrM to NeF
    By clayford13 in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 05-02-2009, 06:30 PM
  4. How can i fix the infamus Graveyard bug ?
    By Wheeze201 in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 03-15-2008, 05:10 PM
All times are GMT -5. The time now is 01:59 AM. 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