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

    TFS 1.X+ onSpawn for one monster

    Then ignore using onSpawn. Just use: <script> <event name="myScript"/> </script> To call the script you want to use for this one monster.
  2. Leo32

    [TFS 1.X] Rarity Rolls & Custom Attributes Library

    Once you clone the repo: git checkout rarity-custom-attributes git merge master Guide: https://stackabuse.com/git-merge-branch-into-master/ If you are getting stuck or git is too complicated for you, manually make these changes: (click on Files changed)
  3. Leo32

    Game 3D simmilar to Tibia, what do you think about it :) ?

    If you want something like this, effectively a game engine like what TFS does - but in 3D. Give this a go: https://github.com/EQEmu/Server Skills translate (C++ server back-end, LUA scripting interface): They've been recently trying to build their own client in unity:
  4. Leo32

    [TFS 1.x] List of missing TFS features from Cipbia

    I haven't looked into this with a lot of depth, but this modules system: https://github.com/opentibiabr/otservbr-global/blob/64cec381335faf30a697c7e4cabe633351760c9f/data/modules/modules.xml Seems like a good solution/concept for live-compatibility with any protocol. FYI, these features are...
  5. Leo32

    Monster Monster Element Reference

    post the regex? It's cool, but dated.
  6. Leo32

    Lua delay creaturesciprt addevent

    teleportTo instead of teleport? addEvent(teleportTo, 5000, player:getId(), rewardRoom)
  7. Leo32

    [TFS 1.0 Client 10.41] I need All players vocation promoted at first time login.

    You need to elaborate. Where did you put this code and what is the error etc. This should be put in your login.lua
  8. Leo32

    [TFS 1.X] Flash Client + ACC Maker (Dev Environment)

    That's hot. Appreciate it 👍
  9. Leo32

    [TFS 1.X] Flash Client + ACC Maker (Dev Environment)

    Yep, you've gotta allow flash for 127.0.0.1: If this is the first time enabling flash - it won't be there you will need to click Site Settings (above) and enable it there:
  10. Leo32

    TFS 1.X+ Vocation(id or name)

    Vocation(invalidVoc) will return a warning every single time, you cannot work around this in lua. You would need to edit sources to remove the warning or re-write how it handles invalid params...
  11. Leo32

    TFS 1.X+ Vocation(id or name)

    So it should be working. It just throws the warning. Validate vocations a different way then: local validVocations = { "sorcerer", "druid", "paladin", "knight", "master sorcerer", "elder druid", "royal paladin", "elite knight", } function onTextEdit(player, item...
  12. Leo32

    TFS 1.X+ Vocation(id or name)

    No need to open up another support thread. https://otland.net/threads/tfs-1-3open-label-type-a-name-of-vocation-and-press-ok.269352/
  13. Leo32

    [TFS 1.X] Flash Client + ACC Maker (Dev Environment)

    That is not the flash binaries. It is the pseudo-code from decompiling the binaries. You cannot use this to recompile the flash client, so they are purely for reference purposes when building your own client.
  14. Leo32

    [TFS 1.0 Client 10.41] I need All players vocation promoted at first time login.

    https://github.com/Znote/ZnoteAAC/blob/6fd5aa5409234601043d71e48116103c00ed4742/config.php#L440 You would need to make edits elsewhere though so this is a bit messy tbh: https://github.com/Znote/ZnoteAAC/blob/6fd5aa5409234601043d71e48116103c00ed4742/config.php#L473-L516 Just do something like...
  15. Leo32

    TFS 1.X+ Promotion bug TFS 1.3

    Irrelevant. You need to find if 30018 is being used in your DATAPACK files, not the engine files. Or your ACC Maker, if you use an old achievements script: https://github.com/Znote/ZnoteAAC/blob/6fd5aa5409234601043d71e48116103c00ed4742/config.php#L239-L243 Or add...
  16. Leo32

    Cpu High %

    I don't think you can optimize getSpectators further. It's just a resource intensive function because of what its doing (gets all creatures in an area). You'll have to look at other functions. Tbh you have no chance at optimizing CPU usage based on these questions, you'd need some heavy c++...
  17. Leo32

    TFS 1.X+ Promotion bug TFS 1.3

    Then use a test char. What is test chars ID. Go through rook and use oracle to set vocation. Logout and login, are they automatically promoted? Then look for their ID in player_storage and see if they have 30018 set for no reason. Use your legs mate. Either a different login script or that...
  18. Leo32

    OTClientV8

    I ship this, except for the fact that its closed-source. It's cipifying the opentibia landscape even further due to greed, but w/e this is what the community seems to be nowadays. The client itself looks pretty slick, got a good head behind it too based on the consistent progress 👍 Any plans to...
  19. Leo32

    TFS 1.X+ Promotion bug TFS 1.3

    Or run DB query on your database: select * from player_storage where key = 30018;
Back
Top