• 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. kor

    MyOTClient

    @chrillefock, @ori_kasimiro, @ralke on my website there are some few custom client to generate - Rookgaard.pl (https://www.rookgaard.pl/client) - if you need any client more just PM me and I'll add it.
  2. kor

    How do mappers collaborate?

    Yes, in our team we are using rookgaard/OTBM2JSON (https://github.com/rookgaard/OTBM2JSON) to unpack otbm file to json string. Then, if there are any conflicts (i.e. two of us made changes in close time), I can easy merge json and then recreate otbm from it again. Edit: worth to mention, when...
  3. kor

    receive 3 days of premium when creating the account the first time.

    function onLogin(cid) local storage, days = (getPlayerAccountId(cid) + 550), 1 if getPlayerStorageValue(cid, storage) <= 0 then setPlayerStorageValue(cid, storage, 1) doPlayerAddPremiumDays(cid, days) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Bla...
  4. kor

    Quiver for paladins - tfs1.X

    @jackl90 Feature - Quiver [TFS 1.X + 0.X] (https://otland.net/threads/quiver-tfs-1-x-0-x.264070/)
  5. kor

    Feature Quiver [TFS 1.X + 0.X]

    Hello. Inspired @xydius solution I've created possibility to make use for quivers for both TFS (1.X based on otland/forgottenserver (https://github.com/otland/forgottenserver) and 0.X on Fir3element/3777 (https://github.com/Fir3element/3777)). I won't post what to change in what line, instead...
  6. kor

    TFS 0.X how to display exact hour and minutes left

    local timer = 7612 local timeParts = {} local hours = tonumber(os.date('%H', timer)) - 1 -- (-1) because Unix Epoch starts with 01:00:00 if (hours > 0) then table.insert(timeParts, hours .. ' hour' .. (hours > 1 and 's' or '')) end local minutes = tonumber(os.date('%M', timer)) if (minutes...
  7. kor

    tfs 1.2 Pomoc przy premium rune.

    Piszesz, że serwer 1.2, a funkcje wyglądają jak z 0.4: onUse(cid, item, fromPosition, itemEx, toPosition) doCreatureSay(cid, ... Wracając do pytania, dodaj przed db.query linię: jeśli to 0.4 local accountId = getAccountIdByName(getCreatureName(cid)) jeśli to 1.2 local accountId =...
  8. kor

    Login only with custom client

    OH MY GOD, can I touch you?
  9. kor

    C++ Cast system tfs 1.3

    https://github.com/otland/forgottenserver/pull/994 https://github.com/otland/forgottenserver/pull/2230
  10. kor

    Feature Embedded proxy in your server.

    No, you didn't.
  11. kor

    Feature Embedded proxy in your server.

    How about this proxyList.patch (https://gist.github.com/Mkalo/a3b419f092ab394d7d226308f066ae5e#file-proxylist-patch-L23) ? And it's not possible that you have error protocollogin.cpp:70:40: error: ‘account’ was not declared in this scope if account is defined here otland/forgottenserver...
  12. kor

    [8.60] Latest forgottenserver 1.3/1.4. Clean downport.

    Yeah, that's really stupid question. Have you checked the sources at least once? https://github.com/nekiro/forgottenserver-1.3-8.6/blob/master/src/luascript.cpp#L4160
  13. kor

    new client, old system - is it possible?

    Yes, it is.
  14. kor

    Feature Embedded proxy in your server.

    @theduck Have you read proxy.patch attached to first post? NO! Go back and add all changes you will find there.
  15. kor

    [Hex-Edit] Change 8.6 client ports.

    Hello. Try our client generator while you are waiting for small fix in MyOTClient - Rookgaard.pl (https://www.rookgaard.pl/client)
  16. kor

    Tibia Client 8.6, how can i change the directory tibia/automap?

    I'm using Freeware Hex Editor XVI32 (http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm)
  17. kor

    Tibia Client 8.6, how can i change the directory tibia/automap?

    Open Hex editor you like, goto address 1B8858 and change Tibia to other, max 7-letter word (you can overwrite extra 2 00 bytes). To change Automap directory, goto address 1CD8A0 and change it to other 7-letter word. After both changes it will look like...
  18. kor

    [Poland][10.98 + Android] Rookgaard - Xyla

    Hello. The time has come to sum up things that have been appearing on Xyla for some time now. Because we announced minor fixes on a regular basis in the game or on the Discord (including the newly created #announcements channel), below is a list of the larger and most important ones. 1...
  19. kor

    [Poland] [8.60] Rookgaard

    Hello. The time has come to sum up things that have been appearing on Fixera for some time now. Because we announced minor fixes on a regular basis in the game or on the Discord (including the newly created #announcements channel), below is a list of the larger and most important ones. 1...
Back
Top