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

    TFS 1.X+ Can someone explain me math.random?

    Math.random(lowerlimit, upperlimit) simple generates a pseudo-random number between those 2 limits (both inclusive). If used with only a single parameter, the lower limit defaults to 1. So you could generate a random number between 1-100, and if that number is 10 or lower, then you've hit the...
  2. Shadowsong

    🐲 OTC StoneDrake UI by Shiva - [Free Release]

    Thanks everyone, and Merry Christmas to you too ♥️ Feels like you just decided at some point that you hate it and never tried to do more work with it, there is definitely a lot of room for improvement on it as it stands, but it's way better now than it used to be, especially the @Mehah fork...
  3. Shadowsong

    🐲 OTC StoneDrake UI by Shiva - [Free Release]

    Hello, I'd like to preface this release, courtesy of a friend known here as @Verticos, with a bit of an origin story, so that you know what you're getting and why. A while ago, I created a GUI for a customer by the name of Tinkz who paid a portion of the price upfront, and maintained a...
  4. Shadowsong

    Merry Christmas!

    This thread is now Michael hating Xmas Merry Christmas everyone 🥳
  5. Shadowsong

    TFS 1.X+ Spell Animated

    It should always reset because movementBlocked is a non persistent boolean attribute on the Creature object which is initialized at false by default on each new Creature object.
  6. Shadowsong

    Dark Blue theme gone

    If anyone wants to mess with theming, even without having any experience with CSS - You can install extensions for your browser that let you do that quite easily, and save the changes you made permanently every time you visit the website. https://stylebot.dev/ You can test and play with stuff...
  7. Shadowsong

    [Configuration] How to make a working Quest Log

    Try in data/lib/core/quests.lua then if you're using otservbr
  8. Shadowsong

    [Configuration] How to make a working Quest Log

    Read the thread and understand how Quest Log works relative to storages, then check your quests.xml to see which storages are being used for the quests that appear complete, then check which code in your server is setting those storages to completed values.
  9. Shadowsong

    Exura sio heal more hp From knight! how to make?

    You could grab vocation info of the target rather than vocation ID and check the fromVocation field, or more conveniently, change local knightVocationID = 1 to an array containing all the vocations which you want to boost with the other combat, like local boostedVocationIDs = {1,2,3,4} and then...
  10. Shadowsong

    Exura sio heal more hp From knight! how to make?

    By looking at the code, I'm guessing you're using some older distro so something like this should work: As far as I know, you can't create or modify combat objects during runtime, so we'll just have to create 2 combats, one for each case, and apply the appropriate one based on the target's...
  11. Shadowsong

    Suggestion Rename the Server Gala subforum

    Be that as it may, advertising is expensive so this is still a place where small server owners expect to publish for some exposure and visibility, and by calling it something obscure and/or humorous, it's diminishing the value of posting there as well. I think Server Promotion is a better fit...
  12. Shadowsong

    Raid Schedule - ELI5?

    Yes, but the chance of this RNG returning a failing outcome is incredibly small, so it is almost always guaranteed that a raid will run on its intended interval2 schedule. To be honest, I'm a bit confused why things were made this way, since all of this kind of renders ˙interval2` almost useless...
  13. Shadowsong

    Raid Schedule - ELI5?

    In the XML input, margin should be a number representing minutes - how much time has to pass since any other raid was ran in order for this raid to run. Use this to offset the time between raids so that you don't get raids which happen too close one to another. interval2 should be a number...
  14. Shadowsong

    Shop npc is out of stock?

    Item stock is not a feature by default in TFS, unless you are using some modified distro or something has gone terribly wrong in the NPC system, I don't see how this could happen. Could you post which distro you are using, your scripts/default.lua script, as well as maybe show a screenshot of...
  15. Shadowsong

    Shiva Shadowsong Thread

    There are things I want to change with it in terms of offers, prices, and the code of the website itself, so all of that is currently "under maintenance".
  16. Shadowsong

    Shiva Shadowsong Thread

    Inspired by marek12's thread, I made a sprite of one of my favorite LoL champions in terms of design. Used Waifu2x for size enhancement. Enjoy: I haven't posted here in a long while, but maybe it's time to revive this thread with some pics of my recent work(s).
  17. Shadowsong

    My League Of Legends Sprites in Tibia!

    Why not go bigger? It seems you have a decent idea of how to apply colors, but some of these sprites are too small and that doesn't let that ability shine nor help you practice with Tibia perspective.
  18. Shadowsong

    OTU - OpenTibiaUnity - A new TibiaClient based on Unity3D engine

    Shocking news... 😣 May he rest in peace.
  19. Shadowsong

    [OtClient] How to display outfit on inventory window?

    It's very simple, you create an UICreature widget which is meant to hold and draw creatures and set your creature inside of it. Make sure to do this sort of stuff only when you are sure that appropriate .dat and .spr files are loaded. -- Create an UICreature widget inside parent rootWidget...
  20. Shadowsong

    Is it ethically correct or viable to add OT experience in a Game Dev CV?

    My 2 cents - I think it should be fine, depending on amount and type of contribution you've made. If it's legitimately your own modifications and work you're showing off, then the rest doesn't necessarily matter that much imo. If you have a Github or something similar where you can easily show...
Back
Top