ArcEmu Database problems menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    roguesownu's Avatar Member
    Reputation
    10
    Join Date
    Nov 2006
    Posts
    189
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    ArcEmu Database problems

    Every database I download for ArcEmu when I start up the server it says creature_spawns has the wrong column count and it wont load the creatures until this is fixed. Can someone either point me to a database they know works or instruct me on how to fix it?

    Also with my logon database, I have an account setup but it doesn't let me log into the server, it just says that the information I have entered is not correct when I try to log in.

    I am using the latest patch of WoW and the latest revision of ArcEmu.

    Thanks in Advanced

    +Rep for people whose advice is helpful
    The following statement is true
    The previous statement is false

    ArcEmu Database problems
  2. #2
    Performer's Avatar Contributor
    Reputation
    212
    Join Date
    Nov 2007
    Posts
    874
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try this

    Code:
    ALTER TABLE creature_spawns CHANGE `bytes` `bytes0` INT( 30 ) NOT NULL DEFAULT '0';
    ALTER TABLE creature_spawns ADD bytes1 INT( 30 ) NOT NULL DEFAULT '0' AFTER bytes0;
    
    ALTER TABLE creature_staticspawns CHANGE `bytes` `bytes0` INT( 30 ) NOT NULL DEFAULT '0';
    ALTER TABLE creature_staticspawns ADD bytes1 INT( 30 ) NOT NULL DEFAULT '0' AFTER bytes0;

    And hit continue with error's if your using Navicat.


  3. #3
    roguesownu's Avatar Member
    Reputation
    10
    Join Date
    Nov 2006
    Posts
    189
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you, this worked! +Rep
    The following statement is true
    The previous statement is false

  4. #4
    Deafrunner's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey could you possibly say step by step in navicat what I am suppose to do I just got the same problem and I'm kinda a newb at such things and could use the help
    thanx again and I am thankful for what your doing.

  5. #5
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deafrunner View Post
    Hey could you possibly say step by step in navicat what I am suppose to do I just got the same problem and I'm kinda a newb at such things and could use the help
    thanx again and I am thankful for what your doing.
    in navicat make a query and enter:
    Code:
    ALTER TABLE creature_spawns CHANGE `bytes` `bytes0` INT( 30 ) NOT NULL DEFAULT '0';
    ALTER TABLE creature_spawns ADD bytes1 INT( 30 ) NOT NULL DEFAULT '0' AFTER bytes0;
    
    ALTER TABLE creature_staticspawns CHANGE `bytes` `bytes0` INT( 30 ) NOT NULL DEFAULT '0';
    ALTER TABLE creature_staticspawns ADD bytes1 INT( 30 ) NOT NULL DEFAULT '0' AFTER bytes0;
    and run it...

    OR save that code with notepad as a SQL file then go to navicat, right click the DB -> execute batch file and select that SQL FILE

  6. #6
    Deafrunner's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanx so much how do i pluss rep you?

  7. #7
    Lukas 45's Avatar Active Member
    Reputation
    43
    Join Date
    Jan 2008
    Posts
    559
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Press the little +Rep buttom under the sign. Chose number of rep(See your: Rep Power: x). Chose a reason to rep him(Fx: Thx for help ). And you can try with me xD

  8. #8
    Deafrunner's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey one more question when i do that it comes up with alot of errors and its saying that in sqlyog it comes up with this message maybe this will help allitle with what i need i dont know

    Error Code : 1054
    Unknown column 'bytes' in 'creature_spawns'
    (0 ms taken)

    Error Code : 1060
    Duplicate column name 'bytes1'
    (0 ms taken)

    Error Code : 1054
    Unknown column 'bytes' in 'creature_staticspawns'
    (0 ms taken)

    Error Code : 1060
    Duplicate column name 'bytes1'
    (0 ms taken)

    what should i do about that if anyone could inform me and possibly in detail again im sorry im kinda a newb like i said.

  9. #9
    joshvan14's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deafrunner View Post
    hey one more question when i do that it comes up with alot of errors and its saying that in sqlyog it comes up with this message maybe this will help allitle with what i need i dont know

    Error Code : 1054
    Unknown column 'bytes' in 'creature_spawns'
    (0 ms taken)

    Error Code : 1060
    Duplicate column name 'bytes1'
    (0 ms taken)

    Error Code : 1054
    Unknown column 'bytes' in 'creature_staticspawns'
    (0 ms taken)

    Error Code : 1060
    Duplicate column name 'bytes1'
    (0 ms taken)

    what should i do about that if anyone could inform me and possibly in detail again im sorry im kinda a newb like i said.
    if you guys could help us for this it would be fantastic.

  10. #10
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deafrunner View Post
    hey one more question when i do that it comes up with alot of errors and its saying that in sqlyog it comes up with this message maybe this will help allitle with what i need i dont know

    Error Code : 1054
    Unknown column 'bytes' in 'creature_spawns'
    (0 ms taken)

    Error Code : 1060
    Duplicate column name 'bytes1'
    (0 ms taken)

    Error Code : 1054
    Unknown column 'bytes' in 'creature_staticspawns'
    (0 ms taken)

    Error Code : 1060
    Duplicate column name 'bytes1'
    (0 ms taken)

    what should i do about that if anyone could inform me and possibly in detail again im sorry im kinda a newb like i said.
    means you already have that update...

    grtz

  11. #11
    Deafrunner's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so how do I get these error codes to go away
    and keep all the npcs still there when the server restarts
    sorry im just new to all this

  12. #12
    joshvan14's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what update does he need then if that one is not the right one?

  13. #13
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    depends on the revision he is using....
    check the arcemu SVN for updates you need

    or post what revision you have here...

  14. #14
    joshvan14's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tyvm i will reply again and say if it worked or not

  15. #15
    Deafrunner's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im not sure what rev it is but i know im using the total war repack if that helps

Page 1 of 2 12 LastLast

Similar Threads

  1. [Database] Ascent / ArcEmu Compiles + Database problem 2.4.3
    By gillisrofl in forum WoW EMU Questions & Requests
    Replies: 3
    Last Post: 10-21-2010, 07:10 AM
  2. Database problems
    By omgrapedlol in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 07-07-2008, 02:35 AM
  3. [HELP]please read database problem
    By Kazard123 in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 06-15-2008, 01:42 PM
  4. Help with weird database problem
    By Xeneth in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 01-15-2008, 01:17 PM
  5. database problem
    By Imakepigsfly in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 10-03-2007, 08:43 AM
All times are GMT -5. The time now is 02:59 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search