• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[SOLVED] World Crash

Status
Not open for further replies.

Unknown96

Exalted Member
Hello, after I played around in the tables in the database (Characters), (playing around with adding a table that was improved by Rochet2 in this [Thread] I received an error when starting up Worldserver.exe looking like this

After that I made sure I had the table added and reopened my worldserver.exe it still gave the same error, all though I tried after that to remove the table and startup my server and it still gave the same result

If your lazy, the table script is here as well.

Code:
CREATE TABLE `hearthstone` (
	`guid` INT UNSIGNED NOT NULL,
	`map` INT UNSIGNED NOT NULL,
	`x` FLOAT NOT NULL,
	`y` FLOAT NOT NULL,
	`z` FLOAT NOT NULL,
	`o` FLOAT NOT NULL,
	PRIMARY KEY (`guid`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB;


Code:
[1146] Table 'characters.hearhstone' doesn't exist
Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.

In attempts to solve this error myself I went ahead and dropped the whole Characters database and recreated it from scratch (note that I only did this with characters database and not any other) but that did not lead into an successful startup, but lead into the same exact error message and crash. + I did apply every update I found after clearing my Characters database.

I myself is starting to run out of ideas, since there isn't any hearthstone table originally what I know of makes it even more confusing for me.

Server dump file
DBErorrs File

Best Regards, confused Unknown96!
 
Last edited:

Rochet2

Moderator / Eluna Dev
Compare these 2, first is the error msg and second is the DB table:
hearhstone
hearthstone

;)

Seems that your code had the typo in the menu option text.
And I used an autocompleter that picked up your text and just assumed the autocompleted text was right. It wasnt.
So the codes I posted had that typo in the table name. ~fixed them in the other support thread.
 
Last edited:
Status
Not open for further replies.
Top