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

    After almost a decade I returned to Tibia

    As the title says, my partner and I wanted to play something of a different genre than what we are used to (Valorant, Apex Legends, Overwatch). She suggested we give it a go to rpg stuff (She never liked it but knows I spent my teenage years playing that genre), she mentioned Tibia because she...
  2. Ramirow

    Show additional skills on client

    This goes hand to hand with my other thread Feature - [TFS 1.3] Adding New Skills (https://otland.net/threads/tfs-1-3-adding-new-skills.265784/) In order to display an additional skill you code into the sources, you must edit the following files: (I will use the same example as my other thread...
  3. Ramirow

    Feature [TFS 1.3] Adding New Skills

    First of all, I make this thread because I was struggling to add a new skill that I could show using bars on the skill section of the client. I know this pieces of code are not something really complex and I only post it in case someone is struggling like I did with this issue, will also create...
  4. Ramirow

    OTClient Adding a new skill bar

    I am trying to add a new skill bar to the otclient, made some progress on the topic, i will list all the files i've edited in the client and in sources down below. The thing is, it shows the bar but with a -1 as value.
  5. Ramirow

    Compiling Can't install libraries using Vcpkg

    As the title says, I installed vcpkg just fine trough the git bash command prompt. Everything went smooth, downloaded the sources too. Then it got stuck on libraries, tried it a couple of times, rebooted, reinstalled. It always gets to the same part. Here is what the console says: $ ./vcpkg...
  6. Ramirow

    TFS 1.X+ Delete description of an item, partially

    I don't know if this is possible or how it's done on Lua syntax. I have some items with this descriptions, added after item creation. Example: You see a sword. Created by PlayerName. [HP+15] Is there a way to only remove the brackets part, right now if I erase ITEM_ATTRIBUTE_DESCRIPTION it...
  7. Ramirow

    Action [TFS 1.2+] Simple Smithing Skill w/ Options

    First of all, I know I'm not a good scripter myself, but I made this and I wanted to share it. Requirements: CODEX NG's Spell Experience system: Player - Spell Experience - 1.2 Optional: Zbizu's UISS: CreatureEvent - [TFS 1.1] Ultimate item stat system (elements, skills, exp, loot and more)...
  8. Ramirow

    [10.98] Deep Forest Mountain

    As I stated already in my mapping thread, was gonna release a mountain I was working on (located deep inside a magical forest) whenever it was finished, and it is, so you can have it. I experimented a lot on this map (specially bordering) so if you don't like it I will understand. Some ingame...
  9. Ramirow

    TFS 1.X+ Server Crash...Or maybe not?

    Hello everyone, I'm facing an strange issue with my server, running TFS 1.2 Sometimes, when I login within my local network or some player (from the internet) logs in WHILE im online, the server just hangs. No error code, the console just stays open but everyone gets Connection Lost and server...
  10. Ramirow

    Lua TFS 1.2 Math.random receives nil value

    Guys, im running into an issue, I will leave an example below, and the error code I get, I can't seem to work out WHY it's receiving a nil value, if I print the value of that var before the math.random() function everything looks good, its for sure not a Nil value. Using TFS 1.2 local crystals...
  11. Ramirow

    Lua Check item question

    How may I check if I have an item over an anvil for example? I can't seem to find a function to do it..
  12. Ramirow

    AMD's new ZEN Core Architecture

    So, guys, what do you think of this move of AMD? Will it be a failure or it will be up to the competition? For those of you who still don't know, here's a little insight of the new architecture.
  13. Ramirow

    Lua Runes with Talkactions [TFS 1.2]

    I'm facing a weird problem now and I don't know how to address it. The script is supposed to do the following: Check if player is knight/elite knight and terminates execution. Check then if player is Sorcerer and can conjure the rune. Check if it is Druid and can conjure the rune. And check if...
  14. Ramirow

    Solved Return False/True. How does it really work?

    Hello guys, I have a doubt, as the title says, how does really Return in LUA works? For instance, I have this script. for i=1,#runes,1 do if runes[i].name == string.lower((words.." "..param)) then local voc = player:getVocation():getId() if isInArray({3, 7, 4, 8}, voc) then...
  15. Ramirow

    Solved Proper way to check Item

    What function should I use if I need to search if player has x item? I've seen a lot of getItem functions but I don't see a way to use them properly as I'm constantly getting errors when trying to use them :/ I'm guessing the one I need is: container:getItemCountById Thanks!
  16. Ramirow

    Tibia Soundtracks

    Well, I'm a musician, not really used to do soundtracks, but I've tried once with some software I bought. Imagine it, never ever composed a game soundtrack and never ever used such programs lol. Anyways, this is what I came up with after doing some tries. It was intended for tibia, and I posted...
  17. Ramirow

    Lua Spell variations. Possible? [TFS 1.1]

    I started looking into the mechanics for the spells used in TFS.. A quick question came to my mind.. As most of you know, the file: "Spells.xml" contains some sort of..Blueprint of all the spells? (I don't how to technically call it sorry :p) Anyways, most of the terms used in there seems to...
  18. Ramirow

    Action Herblore / Mining Skill [TFS 1.1]

    As the title says, an Herblore Skill created using the custom skill system by Codex NG! You NEED the system for this script to work! Here: https://otland.net/threads/player-spell-experience-1-2.238208/ Also, remember to add the skill storages to the player (With firstitems.lua) or whatever...
  19. Ramirow

    Solved TimedEvent, CreateItem and DestroyItem [TFS 1.1]

    Hello to everyone, I'm just trying to learn a bit about lua functions for TFS 1.1 I assume this kind of functions exist even tough I don't know how they are called or what parameters to pass.. I'm trying to create something like this: 1) You use a hammer and destroy an item with id A (Some...
  20. Ramirow

    Solved Additional Skills. Possible?

    I was wondering if I could add additional skills to the game, such as Herblore or Mining (I'm using TFS 1.1). Would it be possible in lua? If so, in the form of actions/events? Or it should be coded into the source? Thanks in advance!
Back
Top