• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. A

    Naji wont deposit gold

    If the problem persists (which I think it will) open bank.lua and replace these two lines: On line 38: if(not isNumber(code)) then to if(not string.match(code, '%d+')) then On line 124: return (isNumber(money) and money > 0 and money < 4294967296) to return (string.match(money,'%d+') and...
  2. A

    Solved Problem with checking if player exists

    Hello! I have a script going which should check if a player exists. The player should not have to be online. The script looks something like this: if Player(name) then return true else return false end This works as long as the player requested is online. As soon as the player logs...
  3. A

    [France] Tibia Rocks 10.77-10.76

    INFORMATION Cast system is enabled. The server will be vanilla Tibia without VIP items. Bounty NPC where you can place a price on someones head. Achievements as in regular Tibia (330 on this server). Almost every quest you can find in regular Tibia is complete. You get certain rewards based on...
  4. A

    [10.77][TFS 1.2] ORTS, a real map project

    I don't know if you did replace the function but here's what the whole file should look like: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid)...
  5. A

    [10.77][TFS 1.2] ORTS, a real map project

    In data/npc/scripts/Nielson.lua, replace function addTravelKeyword() with this: local function addTravelKeyword(keyword, cost, destination, action) local travelKeyword = keywordHandler:addKeyword({keyword}, StdModule.say, {npcHandler = npcHandler, text = 'Do you want to sail to ' ...
  6. A

    [8.60] Godiskungen's Evolution Style

    This is as good as it can get, imo! :D I think I'm going to use it but I can't find the updated version :/
  7. A

    Solved Where's TFS that supports protocol 8.60?

    Silly me, didn't see that there was a source. Thank you Limos!
  8. A

    Solved Where's TFS that supports protocol 8.60?

    Hello! I'm using Debian so no windows executables here. I'm having a hard time finding the right TFS version which supports the protocol 8.60. I have no problems installing/compiling but I can't find the right version. I've tried compiling TFS 0.3.6 and TFS 0.3.6pl1 but it says that it's...
  9. A

    The best VIP system ever! [Action/Movevent/Globalevent]

    An idea would be to change 'vipdays' in database to a time in the future when the VIP-days will be over (easiest would be unix timestamp), and then just check every server save or so if the current time is over the VIP endtime. That way, if the server would crash at 1:59 PM and miss the removal...
Back
Top