• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Launching ot server problem

mahdy

New Member
Joined
Sep 6, 2010
Messages
12
Reaction score
1
Hi everyone
I have had a problem with my server.
its all done but I cant get it to start.
every time I launch the application (TheForgottenServerV8.2 64bit) and the 32bit
it says program not answering.
if some one could help me I would be very grateful.
thank you and here ois a pic so you get some understanding of my problem. :) ot problem.pngof
 
changed libmysql.dll still the same problem ot problem 3.png

Try another data pack maybe to see that there is no script problems.

what data pack sould I use ? could you link ? :) the ot is 8.6 :) TY :)

Try another data pack maybe to see that there is no script problems.
Thank you Ghost so much :) that was the problem :) I changed data pack to the original and it all worked :) TY SO much :):):)
 
Last edited by a moderator:
The first problem you had, with the "The Forgotten Server has stopped working", was because of the libmysql.dll, for people with the same problem.
The runtime error is indeed something different.
 
The first problem you had, with the "The Forgotten Server has stopped working", was because of the libmysql.dll, for people with the same problem.
The runtime error is indeed something different.
well then thank you so much for helping me :) :) :) but now I have a nother problem

Problem 4.png
 
Now I think it is a problem with your config you have all ports set on 7171.

Is it like this on your config.lua?

port = 7171
loginPort = 7171
gamePort = 7172
adminPort = 7171
statusPort = 7171
yes I solved that problem but I still cant seem to fix the ERROR: Failed to load players record! Problem what do u think ?
 
yes I solved that problem but I still cant seem to fix the ERROR: Failed to load players record! Problem what do u think ?
haha dude you are having problems after problems.
delete your database and create a new one and import the new .sql

also the config.lua you are having is maybe different from the tfs you are using so replace it with the tfs you are using.
 
Do you have the table server_record? If not you can add it.
Code:
CREATE TABLE `server_record`
(
  `record` INT NOT NULL,
  `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
  `timestamp` BIGINT NOT NULL,
  UNIQUE (`record`, `world_id`, `timestamp`)
) ENGINE = InnoDB;

INSERT INTO `server_record` VALUES (0, 0, 0);
 
yes I know but this is the last problem, it prevents me from logging in, and it seems so unnecessery to delete it all now when I have cProblem 5.png ome so far
 
Do you have the table server_record? If not you can add it.
Code:
CREATE TABLE `server_record`
(
  `record` INT NOT NULL,
  `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
  `timestamp` BIGINT NOT NULL,
  UNIQUE (`record`, `world_id`, `timestamp`)
) ENGINE = InnoDB;

INSERT INTO `server_record` VALUES (0, 0, 0);
you mean on PhpMyadmin ? yes I do have it :) why?
 
That could cause an error like that (If you don't have it).
You can try to create a new database and make sure you import the right schema.
 
ok so I created a new database and nothing has changed I still have the same problem(ERROR: Failed to load players record!) what do u think ?
 
it prevents me from accessing ingame accountmanager and when I create a char on the site it dose not come up on my ingame character list.
 
Back
Top