• 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!

[8.41/42] The Forgotten Server 0.3.4PL2 (Crying Damson)

Status
Not open for further replies.
:thumbup: 10x! TFS Team! ^_^



Bist ein dep :D probier erst mal was selber denken, was selber probieren.. dann hier was schreiben!


heeeee xD naja, kannst du mir dann sagen wie ich port 7172 öffne? :(

_____________
Hey Guys, only whatIi did is to ask him how can I open the port 7172:thumbup:
 
I've got problem,players lose promotion when die and aol is infinite,how I can solve it?

thanks
 
This isn't working for me, I get "looking for error" (using vista)
I have all the dll files, i downloaded the -gui version.
 
Hello Guys, I had two problems, now only 1 problem left..

Why I can't use the .gui version? Should I do anything? If yes, what? Thx..
 
I know why it crashes. It will be fixed soon.

There were 2 problems with 0.3.3 for me -> socket -> outputmesseage, now I don't know why it crashes and now nobody could log in, soon?? You don't know what soon means
 
otserv.cpp
Find:
Code:
if(buffer == 10 || (buffer != 121 && buffer != 89))
					#endif
						startupErrorMessage("Aborted.");
				}
				else

Replace with:
Code:
if(buffer == 10 || (buffer != 121 && buffer != 89))
					#endif
						//startupErrorMessage("Aborted.");
				}
				else

I get an error when compiling, doesn't work.
 
Linux otserv fast!

Hello everybody!

My Team is searching for an otserv for Linux that is already compliad. When we is compling the otserv it cames "errors" all the time.

I want you to post an otserv for Linux..

Please.. Help us.

If you got an otserv for Linux please post it here after me or just add my msn: "[email protected]"

Regards, Timpa
 
I get an error when compiling, doesn't work.

otserv.cpp line 413+-, you can just delete :

HTML:
std::cout << ">> Checking software version... ";
	if(xmlDocPtr doc = xmlParseFile(VERSION_CHECK))
	{
		xmlNodePtr p, root = xmlDocGetRootElement(doc);
		if(!xmlStrcmp(root->name, (const xmlChar*)"versions"))
		{
			p = root->children->next;
			if(!xmlStrcmp(p->name, (const xmlChar*)"entry"))
			{
				std::string version;
				int32_t patch, build, timestamp;

				bool tmp = false;
				if(readXMLString(p, "version", version) && version != STATUS_SERVER_VERSION)
					tmp = true;

				if(readXMLInteger(p, "patch", patch) && patch > VERSION_PATCH)
					tmp = true;

				if(readXMLInteger(p, "build", build) && build > VERSION_BUILD)
					tmp = true;

				if(readXMLInteger(p, "timestamp", timestamp) && timestamp > VERSION_TIMESTAMP)
					tmp = true;

				if(tmp)
				{
					std::cout << "outdated, please consider updating!" << std::endl;
					std::cout << "> Current version information - version: " << STATUS_SERVER_VERSION << ", patch: " << VERSION_PATCH;
					std::cout << ", build: " << VERSION_BUILD << ", timestamp: " << VERSION_TIMESTAMP << "." << std::endl;
					std::cout << "> Latest version information - version: " << version << ", patch: " << patch;
					std::cout << ", build: " << build << ", timestamp: " << timestamp << "." << std::endl;
					#ifndef __CONSOLE__
					if(MessageBox(GUI::getInstance()->m_mainWindow, "Continue?", "Outdated software", MB_YESNO) == IDNO)
					#else
					std::cout << "Continue? (y/N)" << std::endl;

					char buffer = getchar();
					if(buffer == 10 || (buffer != 121 && buffer != 89))
					#endif
						startupErrorMessage("Aborted.");
				}
				else
					std::cout << "up to date!" << std::endl;
			}
			else
				std::cout << "failed checking - malformed entry." << std::endl;
		}
		else
			std::cout << "failed checking - malformed file." << std::endl;

		xmlFreeDoc(doc);
	}
	else
		std::cout << "failed - could not parse remote file (are you connected to the internet?)" << std::endl;
 
only one question:
what are the testers for? what do they test if it's released with bugs? ;>
 
only one question:
what are the testers for? what do they test if it's released with bugs? ;>

That is fucking exacly what I though about also.
What did they?? Wan't me to tell you??
They made patched 0.3.3 (Which I was using for one week, I've patched Real map bug, and socket, but there were still problems with sockets) then, slawenks and kaczooh started to fix bugs which they knew about, instead of working on stability they started to fix not so dangerous bugs what caused less time to test, new issues. Then everybody started to cry that it is so long to wait for new release. Lef wanted to do it as fast as he could, but he couldn't test EVERYTHING, and as I think they were only testing the revisions before at linux, so It wasn't tested on Windows. What Is causing bugs right now?? For me I can't recompile it by myself so I don't have exception tracer (thats also funny, you can see now how fast were they doing it) I can guarantee the problem is still Outputmesseage(since 0.3.1 or 0.3.2) and socket failture. If someone feels insulted I'm sorry but that's true.
 
Status
Not open for further replies.
Back
Top