How to Compile Hearthstone Core menu

Shout-Out

User Tag List

Page 4 of 6 FirstFirst 123456 LastLast
Results 46 to 60 of 90
  1. #46
    Vindicated's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2008
    Posts
    1,067
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks like there is an issue with your playercreateinfo table. Make sure that this has data in it.


    How to Compile Hearthstone Core
  2. #47
    uberkiid's Avatar Member
    Reputation
    5
    Join Date
    Nov 2007
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vindicated View Post
    Looks like there is an issue with your playercreateinfo table. Make sure that this has data in it.
    There is no data, how should I go about fixing it?

  3. #48
    Vindicated's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2008
    Posts
    1,067
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well you should install a world database like RivalDB (Link provided in my guide)


  4. #49
    uberkiid's Avatar Member
    Reputation
    5
    Join Date
    Nov 2007
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vindicated View Post
    Well you should install a world database like RivalDB (Link provided in my guide)
    Ok, so I installed RivalDB but I am still getting an error upon opening my worldserver.exe

    http://i176.photobucket.com/albums/w...erverror-1.jpg

    I'm sorry for my lack of knowledge with this stuff and also for all my questions.

  5. #50
    Vindicated's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2008
    Posts
    1,067
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are your remote passwords matching in hearthstone-world.conf and hearthstone-logonserver.conf?


  6. #51
    uberkiid's Avatar Member
    Reputation
    5
    Join Date
    Nov 2007
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vindicated View Post
    Are your remote passwords matching in hearthstone-world.conf and hearthstone-logonserver.conf?
    Yes. I just double checked and they are the same.

  7. #52
    w1z8it's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What am I doing wrong? I'm no noob to programming, I've followed the guide perfectly, when I get to IV. Compiling Hearthstone and compile the source I get over 500 errors, I'm using Windows 7 build 7600 and VS2008 Pro.

    I tried another guide first and had exactly the same errors, some of them are as follows:


    Code:
    Error	1	error C2039: 'shared_ptr' : is not a member of 'std::tr1'	g:\Hearthstone\trunk\src\hearthstone-shared\Common.h	300	hearthstone-shared
    Error	2	error C2873: 'shared_ptr' : symbol cannot be used in a using-declaration	g:\Hearthstone\trunk\src\hearthstone-shared\Common.h	300	hearthstone-shared
    Error	3	error C2065: 'shared_ptr' : undeclared identifier	g:\Hearthstone\trunk\src\hearthstone-shared\Common.h	383	hearthstone-shared

    There are 545 total, the other guide I followed produced 548 errors, any ideas?

    Edit: Found the problem you need to install Visual C++ 2008 Feature Pack Release with certain versions of Visual Studio, everything compiles now.
    Last edited by w1z8it; 07-30-2009 at 03:40 PM.

  8. #53
    w1z8it's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A different error now, when trying to execute the MySQL batch files from Navicat Lite:

    [Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ';

    What's up?

  9. #54
    Vindicated's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2008
    Posts
    1,067
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That's good you fixed the error, but there is an error with your query. Post the query here and I will be glad to fix it.


  10. #55
    w1z8it's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vindicated View Post
    That's good you fixed the error, but there is an error with your query. Post the query here and I will be glad to fix it.
    Hi, erm the error is given when I execute the 1008_WorldTemplate.sql file from Navicat.

  11. #56
    Vindicated's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2008
    Posts
    1,067
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Then that means that there is an error on Aspire's part. Report it on their forums: aspiredev.net


  12. #57
    w1z8it's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No need I found the error, and fixed it:

    Open up 1008_WorldTemplate.sql with notepad or whatever, look at the first query:

    Code:
    SET FOREIGN_KEY_CHECKS=0;
    -- ----------------------------
    -- Table structure for achievement_rewards
    -- ----------------------------
    CREATE TABLE `achievement_rewards`(
    `achievementid` int(10) UNSIGNED NOT NULL ,
    `title_alliance` int(10) UNSIGNED NOT NULL ,
    `title_horde` int(10) UNSIGNED NOT NULL ,
    `itemid` int(10) UNSIGNED NOT NULL ,
    PRIMARY KEY (`achievementid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Achievement System';;
    Remove one of the semicolons at the end of the query, save and then the batch file will execute correctly.

  13. #58
    w1z8it's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Everything went fine with the database queries, and creating the database and tables after I fixed the query posted above, now when I load the server I get the following errors:

    Code:
    13:38:39 E Database: Sql query failed due to [Table 'hearthstone
    mcreation' doesn't exist], Query: [SELECT * FROM randomitemcreat
    
    13:38:39 E Database: Sql query failed due to [Table 'hearthstone
    dcreation' doesn't exist], Query: [SELECT * FROM randomcardcreat
    
    13:38:39 E Database: Sql query failed due to [Table 'hearthstone
    ation' doesn't exist], Query: [SELECT * FROM scrollcreation]
    
    13:38:39 E MySQL: Query failed: SELECT * FROM playercreateinfo
    
    13:38:39 E Database: Sql query failed due to [Table 'hearthstone_world.sp
    ced_targets' doesn't exist], Query: [SELECT * FROM spell_forced_targets]
    
    13:38:39 E Database: Sql query failed due to [Table 'hearthstone_world.s
    c_override' doesn't exist], Query: [SELECT * FROM spell_proc_override]
    
    13:38:39 E LootMgr: Loading loot from table objectloot failed.
    13:38:39 E LootMgr: Loading loot from table skinningloot failed.
    13:38:39 E LootMgr: Loading loot from table fishingloot failed.
    13:38:39 E LootMgr: Loading loot from table itemloot failed.
    13:38:39 E LootMgr: Loading loot from table prospectingloot faile
    13:38:39 E LootMgr: Loading loot from table disenchantingloot fai
    13:38:39 E LootMgr: Loading loot from table pickpocketingloot fai
    13:38:39 E LootMgr: Loading loot from table millingloot failed.
    
    13:38:40 E LootMgr: Loading loot from table creatureloot failed.
    Although the server does load the above errors don't look good, any ideas?

    Edit:
    Another issue, I login, select the Test Realm server that's listed (obviously mine), I create a character and as soon as I click "ACCEPT" I get thrown back to the login screen which a message "You have been disconnected from the server"...

    Edit again:
    Ok after poking around I found out that I should install RivalDB (Not even mentioned in this guide for some reason...), so I've followed the instructions in the other guide to install and setup, now when I start the server it crashes and I get this:



    This is starting to get frustrating now.
    Last edited by w1z8it; 07-31-2009 at 09:51 AM.

  14. #59
    Vindicated's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2008
    Posts
    1,067
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Actually it is mentioned in this guide if you looked. And I believe that is an error on RivalDB's part :/ They forgot to add a table or something. About the logon issue, it could be a number of things, most likely being your character database is corrupt.


  15. #60
    w1z8it's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vindicated View Post
    Actually it is mentioned in this guide if you looked. And I believe that is an error on RivalDB's part :/ They forgot to add a table or something. About the logon issue, it could be a number of things, most likely being your character database is corrupt.
    I've gone through you guide word for word 3 times now, no where did I see you mention having to install RivalDB, but besides that what should I do now? I've gone through this entire guide 3 times and I get the same issues each time, is this guide obsolete for the time being until your affiliates fix their issues?

Page 4 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [Tutorial] How To Compile Trinity Core UPDATED WORKING
    By Nobel in forum WoW EMU Guides & Tutorials
    Replies: 13
    Last Post: 03-06-2011, 04:25 PM
  2. [Mangos] Does anyone know how to compile a MaNGOS core in Ubuntu 10.04?
    By aaammmsterdddam in forum WoW EMU Questions & Requests
    Replies: 5
    Last Post: 10-01-2010, 04:04 PM
  3. [Guide] How To Compile a Aspire Core WoW Server!
    By XC4T4LY5TX in forum WoW EMU Guides & Tutorials
    Replies: 1
    Last Post: 11-05-2008, 07:59 AM
  4. [Guide]How to Compile 2.4 Core
    By Algorithm in forum WoW EMU Guides & Tutorials
    Replies: 12
    Last Post: 07-16-2008, 03:18 PM
  5. Guide: How to Compile Ascent yourself! [With photos]
    By Skaren in forum WoW EMU Guides & Tutorials
    Replies: 33
    Last Post: 01-08-2008, 08:18 PM
All times are GMT -5. The time now is 01:28 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