/FORGOTTENSERVER-ORTS

Try to make the perfect open real tibia server!

Primary LanguageLua

What is FORGOTTENSERVER-ORTS

We are trying to create the perfect open real tibia server based on The Forgotten Server 1.1 by Mark Samman.

For more information about TFS 1.1 (including compiling guides) visit the link above.

You can download TFS 1.1 Windows binaries from http://nightlies.otland.net. (not always up to date!)

To login you can use Otclient by edubart.

  • Client Version: 10.41
  • Map Version: 10.35
  • The map is available as a rar archive in data/world/ which you have to unpack before running the server.

To edit the map you can use Remere's Map Editor (Github), Remere's Map Editor 10.35 (Otland, compiled) or Forgotten Map Editor. You can use our forum thread at Otland to discuss and report bugs.

If you need support you can post your questions in the issues area or use Otland's support board. Do not forget to post in good, understandable English and include all the information needed to solve the problem.

Script Contribution

In order to contribute scripts to this project create a pull request.

Important:

  • Scripts should follow this lua style guide and be as efficient as possible.
  • Use tabs as indentation.
  • Use new metatable functions or you have to revise your pull request.

Example script (using metatables):

local player = Player(cid)
if not player then
	return true
end

player:addItem(2160, 5)
player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, 'Here is some cash.')

Example script (not using metatables):

if not isPlayer(cid) then
	return true
end

doPlayerAddItem(cid, 2160, 5)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'Here is some cash.')

Scripting related links:

Map Contributions

In order to contribute map updates read this article first.

Current map (missing areas are marked): minimap_floor

Remember to have fun and say thanks!