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

Search results

  1. forgee

    Only clients with 10.77 protocol allowwed

    You need TFS SDK 2.0, MSVC 2013 and the boost libraries. TFS 1.0 and 1.1 is the source which you should already have from github, so you don't need either of those. I have never compiled under Windows myself, so further than that I don't know.
  2. forgee

    I've added it, and it doesn't work.

    Where did you download the spr/dat from? Maybe try a different source, either http://www.************/index/windows or http://tibia.sx/. I think the one I'm using came from tibia.sx.
  3. forgee

    Only clients with 10.77 protocol allowwed

    Yes, it should. You can follow this tutorial on how to compile on Windows: https://otland.net/threads/compiling-tfs-1-0-1-1-latest-source-64-and-32-bits-pics-and-lots-of-explanation.204532/
  4. forgee

    I've added it, and it doesn't work.

    I believe it should be /things/1041/Tibia as per the message. You have it in /things/1041.
  5. forgee

    Only clients with 10.77 protocol allowwed

    Are you using a pre-compiled executable? As far as I can tell you will have to compile it yourself. You can not use an executable from nightlies.otland.net or the official TFS releases.
  6. forgee

    Only clients with 10.77 protocol allowwed

    TFS 1.2 does not support 8.6. You can use this version that is downgraded to 8.6.
  7. forgee

    Solved How to stop database updating when player gets experience.

    I would probably set 'save' to 0 on first login. This should work on TFS 1.0+, if you use a different version the exact syntax will vary. db.query("UPDATE players SET save = 0 WHERE id = " .. player:getGuid())...
  8. forgee

    Script delay TFS 1.2

    As far as I can tell, the correct syntax should be: <script delay="120000" script="file.lua"/> Source: https://github.com/otland/forgottenserver/blob/master/src/raids.cpp#L223 https://github.com/otland/forgottenserver/blob/master/src/raids.cpp#L567
  9. forgee

    Few issues I need help with on fresh TFS

    You can replace if isNumber(param) then with if tonumber(param) ~= nil then Or add this in data/global.lua: function isNumber(str) return tonumber(str) ~= nil end
  10. forgee

    Few issues I need help with on fresh TFS

    Sounds like your character and/or account does not have the appropriate privileges. Look in your database and see if your account has 'type' 6 and that the character has 'group_id' 3. The website creates the accounts and characters without administrative privileges and you have to manually...
  11. forgee

    Znote >Admin_news< trouble and 2 little troubles

    The PHP notices probably comes from the layout (custom index.php) as $config doesn't have a field named 'date' and the default index.php does not contain the lines you referenced. Could you specify what you mean by admin_news never appear? Can you access it by typing it into the address bar...
  12. forgee

    Lua What's wrong with that?

    Read my post carefully one more time. I said I assumed that firewalkerwall and resetFireWalker() were working correctly. I said you didn't need to check for monsters before you check if there are players there. That is exactly what I told you, check if there are players in the area before you...
  13. forgee

    Lua What's wrong with that?

    I think the error is because you return false, or nil if there are no players in the area. onThink() should always return true as far as I know. You should check the table count before starting the loop, though, and in the case of specs, you don't acutally do anything with the table. Lua table...
  14. forgee

    Windows Convert map .otbm from 8.60 to 10.77 PROBLEM!!!

    Have you changed your account type? You can check your account type by adding this line right after onSay(player, words, param): player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, string.format("Your account type is: %s", player:getAccountType())) It should show a message with your account...
  15. forgee

    Windows Convert map .otbm from 8.60 to 10.77 PROBLEM!!!

    What happens when you try to use it? Nothing at all, do the command show up in default chat, any errors in console? Did you update TFS recently?
  16. forgee

    Windows Convert map .otbm from 8.60 to 10.77 PROBLEM!!!

    Open a blank map (File->New), go to Map->Properties and select 10.77. Now go to File->Import->Import map and select the map you want to convert. Done.
  17. forgee

    PHP get image based on sql value

    There are a whole lot of redundancies here. 'layout/overall/header.php' should already set the DOCTYPE and <head> etc, and you already have a connection to the database from 'enigne/init.php'. All you need to do is to use the znote functions, mysql_select_multi and mysql_delete (see...
  18. forgee

    teleporting Chest?

    It happens, doesn't it? :P At first glance I thought the code whitevo posted was the same as yours Codex, but then I saw that it wasn't.
Back
Top