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

    Lua Problem canWalkthrough DP

    It's something wrong with your script tile onStepIn to depot. It should check if there is player and break if true. Show your script movements/scripts/tiles.lua Your bug happens probably because you or someone added in source that you can pass through players in safe zone but forgot about depot...
  2. S

    config ip

    In TFS only this line you should use: bindOnlyGlobalAddress = false Other doesn't work. wtf? remove that lines: bindOnlyConfiguredIpGlobalAddress = false bindOnlyConfiguredIpAddress = false bindOnlyGlobalipAddress =false bindOnlyConfiguredIpAddress = false When you set this to false players...
  3. S

    [TFS 1.0] How do I remove a tile?

    What is creating 1,073,741,824 tiles? first time i see problem like that. Do you want remove your map or what the..? As i said you didnt explain anything and trying to get help, it's wrong. Show us script that creates tiles and tell what is that for so someone can help you.
  4. S

    Solved how to remove infinite arrows and bolts?

    <item id="2547" article="" name="power bolt" plural="power bolts"> <attribute key="weight" value="80" /> <attribute key="slotType" value="ammo" /> <attribute key="attack" value="40" /> <attribute key="maxHitChance" value="90" /> <attribute key="weaponType"...
  5. S

    [TFS 1.0] How do I remove a tile?

    I don't know if you mean only c++ or also lua, you should explain better. In lua i use this: local position = {x, y, z} local tile = position:getTile() tile:remove(-1)
  6. S

    How to decrease the amount of monsters spawn in

    if you mean spawner time.. TFS_folder/config.lua rateSpawn = 1 but maybe you mean this TFS_folder/data/world/yourfile-spawn.xml
  7. S

    Lua Why my fishing.lua dont work?

    Maybe you understand scripts abit but obviously you dont understand english enough to communicate with others. I give him base TFS script so he could edit it with only understanding the code. gmstrikker feel my good heart i worked few hours to make it. It is 100% like you wanted to be. Tested...
  8. S

    Map Problems

    Ctrl+P and change client version then ok and save Ctrl+S. If you can't choose 10.77 you need to download another map editor. I use remeres 2.2 and it have 10.76 map version
  9. S

    Lua Why my fishing.lua dont work?

    Indeed you are. My script is working but gmstrikker want his own script > modified. I could made it but it would take too much time for me and im not interested in 8.6 anymore. I suggest you to use that script i posted and edit it for your purposes because your script looks really sad.
  10. S

    Lua How to shorten this script?

    local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_NONE) function onCastSpell(creature, var) local msg = "<the welter devours his spawn and heals himself>" local spectators, spectator = Game.getSpectators(creature:getPosition(), false, false, 10, 10, 10, 10) for i...
  11. S

    Lua ? where too configure how often npcs say stuff?

    ..below function onThink() npcHandler:onThink() end ..add local lastSound = 0 function onThink() local rand = math.random(30,40) local rand1 = math.random(100) if lastSound < os.time() then lastSound = (os.time() + rand) if rand1 < 80 then...
  12. S

    [Znote AAC 1.5] Help to block account 1/1

    Just go to database and change password?
  13. S

    Windows help with hosting

    I can help you on skype, will be faster. #edit This guy probably solved this and didn't write it. Gosh i hate peoples like that. That's what pushing me to not help.
  14. S

    Windows help with hosting

    Say if you can login or not.
  15. S

    Is there any way to change the char name without re-login?

    It's kinda impossible because character is loaded from database at login. When you logout with another name than specified in database there will be error that player doesn't exist. I think its on game developers level to change things like that.
  16. S

    Item with duration

    Sorry i don't know anything about war servers, can't help you. On war serwers you can login, die and respawn with starting lvl etc? Whats the point of making items for war serwers?
  17. S

    Windows help with hosting

    Nope. Did you read my example? Everything with # is ignored by file, it should be obvious when you see all stuff like info for you what to do. # localhost name resolution is handled within DNS itself. # 127.0.0.1 localhost # ::1 localhost 192.168.2.2 11.111.111.111
  18. S

    stil got a problem with my client

    You downloaded infected tibia client and confused why antivirus is detecting visurses? download Tibia 8.60 http://tibia.sx then use hex editor and piceditor to change client Hex: http://www.handshake.de/user/chmaas/delphi/download/xvi32_254.zip PicEditor i can give you that one i am using...
  19. S

    Item with duration

    Isn't better to make vip items only for vip players (vip system) so it will be possible to use only for 30 days? You will have alot of work if you want offline duration for each item and probably you will need to create table in database or change source code. Counter that update duration in...
  20. S

    Windows help with hosting

    run > cmd > write: ipconfig press enter copy ipv4 (example: Adres IPv4. . . . . . . . . . . . . : 192.168.X.X) Goto: C:/Windows/system32/drivers/etc/hosts Edit file with notepad and at end of file add your ipv4 and ip from config.lua. # localhost name resolution is handled within DNS itself. #...
Back
Top