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

    OTClient Auto updater checksum error

    I'm having some issues getting the auto updater working. It connects and finds the files to download but when trying to download I get this error message: I've searched around the forums but can't find any solution. Some help would be much appreciated :) I'm using Windows and here's the code...
  2. J

    [TFS 0.4] [8.60] Check if player is in area

    Hello! I'm trying to create a boss room where the monsters and boss spawn only when a player enters the area. If there is no players in the area they should despawn. It works perfectly when there's 1 player online. If there's more players online however the script only works if all players are...
  3. J

    [Sweden][8.6] Highland | Low Rate RL Map | RESET NOV 25

    Why should you play on Highland? One thing that makes us unique is that this server is completely free from Pay To Win! No donate weapons or bonus XP (exception is stamina bonus with premium), you earn everything in-game! The only items you can get in the shop is quality of life items such as...
  4. J

    [SWEDEN] [8.6] Highland | No P2W | Real Map with custom content

    IP: HighlandOT.com PORT: 7171 CLIENT: 8.6 Website: highlandot.com To play on Highland you need to use our custom client. Why should you play on Highland? One thing that makes us unique is that this server is completely free from Pay To Win! No donate weapons, you earn everything in-game...
  5. J

    [TFS 0.4, 8.6] AutoLoot Error

    I'm using a AutoLoot mod and it's working as intended. The same error message keeps appearing in the console however and I have no idea what's causing it and it doesn't appear to cause any issues in the game from what I have seen. Does anyone know what's causing this and how to solve it...
  6. J

    [TFS 0.4, 8.6] Using monster looktype as outfit

    I'm trying to use monster looktypes as player outfits but I can't get it working. I'm trying to use Barbarian Skullhunter and brutetamer. In Outfits.xml I have: <outfit id="38" premium="no" default ="1"> <list gender="0" lookType="264" name="Dungeon master"> <stats...
  7. J

    [TFS 0.4, 8.6] Lose premium on login

    I'm using the premium functions on my server but have some issues with the premium disappearing. I've noticed that the premium disappears when doing the following: 1. Closes the Tibia client and opens it up again. When a player does this and logs back in the account is set to Free. 2. Logs...
  8. J

    [TFS 0.4] [8.6] Autoloot item attributes

    I'm using a autoloot mod and item rarity mod. Each time you kill a monster there's a chance that items get different rarity that has specific attributes such as attackspeed, increased defence etc. The problem is that if you have for example a royal helmet added to autoloot and you get a rare...
  9. J

    [TFS 0.4] [8.6] Distance weapons with fast attack speed

    I have a system that has a chance to add different attributes to dropped weapons such as attackspeed. However that doesn't seem to work on distance weapons that uses ammo. Is there something I need to edit in source for this to work? I would be greatful for any help! :)
  10. J

    [Sweden][8.6] Highland Custom RL Map

    Highland is a 8.6 server that uses a modified version of the real Tibia map with lots of custom content. Custom Content Besides all the quests and other content that exists in real Tibia we've added some custom content. Here's s taste of what you can expect when playing on Highland...
  11. J

    Double XP issue

    I have a scroll that when activated gives 2x xp for 2 hours. local config = { rate = 2, storage = 1000, expstorage = 1100, register = 1200, time = 7200, } function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerStorageValue(cid, config.storage) <= 0 and...
  12. J

    Compiling OTclient

    I' trying to compile OTclient and I've followed everything to the letter but I keep getting this error: Error C1083 Cannot open include file: 'google/protobuf/port_def.inc': No such file or directory How can I fix this? :/
  13. J

    [TFS 0.4] [8.6] Don't count Xlogged players & more than 4 on same IP

    I'm trying to comply with the rules of otservlist not co count xlogged players and more than 4 players per IP. From what I can see it doesn't count more than 4 per IP, but I still get the xlogged players. I've tried and searched the forums but it still counts the xlogged players. Here's my...
  14. J

    [TFS 0.4] [8.6] Shop NPC won't sell custom potions

    I've created "ultimate spirit potions" and "ultimate mana potions" using the same sprites as the great potions. I first created them in item editor and replaced unused items. I've added them in items.xml, potions.lua and in the shop script as well. When opening the shop module I can see that the...
  15. J

    [TFS 0.4] [8.6] Walk through players at depot

    I'm having an issue where people can walk under other people in the depot and steal items. I've searched the forums and saw that most posts made changes in player.cpp and recompiled the server. Shouldn't there be a solution to fixing this in a movement script? The one that suggested that didn't...
  16. J

    [TFS 0.4][8.6] Weapons with req lvl for vocation

    I'm really scratchin my head over this... I know how to create new weapons and set a required level and vocation. I've done it with a couple of weapons and everything worked fine. This time however it just won't work no matter what I try. 1. I've created a new item in item editor and set the...
  17. J

    Remove teleport

    I have a script that causes a teleport to appear after you kill a certain boss. After 2 minutes the portal should disappear. The portal will appear but it stays forever. It used to work fine when I used TFS 0.3.6 but I switched to 0.4 and now the script won't work :/ function onDeath(cid...
  18. J

    PhpMyAdmin issues

    I've got a server online and noticed that one random player started activating raid events. I then noticed that he had group_id: 5 making him a GM. My first thought was that the database had been hacked so I looked for things to make the database safer. I blocked the port 3306. I changed the...
  19. J

    Bugged stairs

    There's an issue with eastern and southern stairs. When I climb down or up I get stuck inside the stairs. I'm using TFS 0.4 with 8.6. Here's how it looks inside Remeres Map Editor: And here's the code in items.xml: <item id="7925" name="stone stairs"> <attribute...
  20. J

    Item that repairs boots

    I'm trying to create an item that when used repairs soft boots. I have this code: actions/scripts/repairshoes.lua local boots = { [12671] = {id = 6132} } function onUse(cid, item, fromPosition, itemEx, toPosition) if boots[item.itemid] then doTransformItem(item.uid...
Back
Top