Can't choose Blood Elves nor Dranei!

Results 1 to 10 of 10
  1. #1
    Member Souljah123 is offline
    MemberRank
    Sep 2004 Join Date
    Vancouver, CanadaLocation
    52Posts

    Can't choose Blood Elves nor Dranei!

    Okay, i followed a guide and installed everything perfectly.

    The server starts up fine and show no signs of error, but when i login to test, the blood elves and draenei are grayed out!



    By the way, im using vv@vv TBC v2.0.12!

    Thanks.

    Server Setup:

    Mangos v3452
    SDB latest release
    Mangoscript 261
    Windows XP Pro. SP2
    Core 2 Duo e6700
    4GB of dual channel RAM


  2. #2
    Member xganterx is offline
    MemberRank
    Jan 2007 Join Date
    Finland LeppLocation
    36Posts

    Re: Can't choose Blood Elves nor Dranei!

    You have TBC instaled?? if yes there is 2 ways to make this work.

    1.On your Database go to "realmd_bc","realmd"... and open account table,select you account and find "tbc" table if its "0" chance it to "1".

    2.on you mangos root folder open "mangosd.conf" open it and find


    # BC support.
    # Default: 0 (No support)
    # 1 (BC needed to logon)
    BCSupport = 0

    Chance it to:


    # BC support.
    # Default: 0 (No support)
    # 1 (BC needed to logon)
    BCSupport = 1

  3. #3
    Member Souljah123 is offline
    MemberRank
    Sep 2004 Join Date
    Vancouver, CanadaLocation
    52Posts

    Re: Can't choose Blood Elves nor Dranei!

    I can't find:
    # BC support.
    # Default: 0 (No support)
    # 1 (BC needed to logon)
    BCSupport = 0

    I want my testers to be able to create TBC characters without me changing the TBC thing.

  4. #4
    Member xganterx is offline
    MemberRank
    Jan 2007 Join Date
    Finland LeppLocation
    36Posts

    Re: Can't choose Blood Elves nor Dranei!

    what repack you use ?

    Edit: there is way to make "tbc" "1" to default to DB but i dont remember where is guide to this

  5. #5
    Member xganterx is offline
    MemberRank
    Jan 2007 Join Date
    Finland LeppLocation
    36Posts

    Re: Can't choose Blood Elves nor Dranei!

    If found it,but i dont know is this work

    ALTER TABLE `account` ADD `tbc` TINYINT(3) UNSIGNED NOT NULL DEFAULT '1' AFTER `online`;

    insert this to empty notebad doc and save it whit "tbcfix.SQL" name and then execute it to realmd DB

  6. #6
    Member Souljah123 is offline
    MemberRank
    Sep 2004 Join Date
    Vancouver, CanadaLocation
    52Posts

    Re: Can't choose Blood Elves nor Dranei!

    I tried importing the script.sql and it says there is an error with duplicate entries.

    Setting account to tbc "1" works, but now i need to know how to make it so that everyone who makes an account will have TBC enabled by default.

  7. #7
    Sorcerer Supreme FamineMK is offline
    Member +Rank
    Jun 2006 Join Date
    In the clouds.Location
    378Posts

    Re: Can't choose Blood Elves nor Dranei!

    Quote Originally Posted by xganterx View Post
    If found it,but i dont know is this work

    ALTER TABLE `account` ADD `tbc` TINYINT(3) UNSIGNED NOT NULL DEFAULT '1' AFTER `online`;

    insert this to empty notebad doc and save it whit "tbcfix.SQL" name and then execute it to realmd DB
    It doesn't work because he's "Adding" a new column after "online" called TBC. The problem is, your DB already contains this column. What you need to do (If you're using SQLyog) is go into your realmd database, right click on the "Account" table, and go to "Alter" you will see a whole bunch of info about that DB and its columns. Each Column is separated into rows now with the information about it in columns. Look up in the column headers, and find "Default" Scroll down through the list until you find your column. (In this case it's TBC) It should be 0 at this point in time, you want to change that to a 1. Don't forget to save the changes.

  8. #8
    Grand Master kennythekid is offline
    Grand MasterRank
    Aug 2005 Join Date
    RomaniaLocation
    636Posts

    Re: Can't choose Blood Elves nor Dranei!

    use this:

    Update `account` SET tbc=1 WHERE tbc=0;

    this should fix your problem

  9. #9
    Member Souljah123 is offline
    MemberRank
    Sep 2004 Join Date
    Vancouver, CanadaLocation
    52Posts

    Re: Can't choose Blood Elves nor Dranei!

    Quote Originally Posted by FamineMK View Post
    It doesn't work because he's "Adding" a new column after "online" called TBC. The problem is, your DB already contains this column. What you need to do (If you're using SQLyog) is go into your realmd database, right click on the "Account" table, and go to "Alter" you will see a whole bunch of info about that DB and its columns. Each Column is separated into rows now with the information about it in columns. Look up in the column headers, and find "Default" Scroll down through the list until you find your column. (In this case it's TBC) It should be 0 at this point in time, you want to change that to a 1. Don't forget to save the changes.
    Thanks, this fixed it for me!

  10. #10
    Sorcerer Supreme FamineMK is offline
    Member +Rank
    Jun 2006 Join Date
    In the clouds.Location
    378Posts

    Re: Can't choose Blood Elves nor Dranei!

    Quote Originally Posted by kennythekid View Post
    use this:

    Update `account` SET tbc=1 WHERE tbc=0;

    this should fix your problem
    Then you have to do it every time you get new accounts. Setting it to be Default works the best way.



    Glad I could help.



Advertisement