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

    Pixel Art by Danek

    Quite wrinkly, I'd say its an elder beholder. Showing snaps of the progress over time is cool. New head is much better
  2. soul4soul

    OpenTibia OT Monster Converter

    Updated to v4.0.0 All issues reported in this thread and on the github repo since v3.0.0 have been fixed. Change Log Support for converting between server and client item ids Major updates to TibiaWiki Converter Fetch item ids, missile ids, and effect ids from the website New template...
  3. soul4soul

    "Importing" characters from real Tibia

    Thread title was click bait as I didn't notice this thread was in the support section. I was thinking hmm how the heck can characters from RL be imported, then a light bulb went off maybe someone made a script that can parse the char bazaar and create a matching ot character with items and...
  4. soul4soul

    TalkAction ideas from other games!

    follow is an especially cool idea, it's one less interaction with the mouse. whodrops is nice too but with a built in cyclopedia it wouldn't be as necessary. Though at this rate it will be years before an cyclopedia is support by the TFS engine.
  5. soul4soul

    [TFS 1.3] seasons of the year (async)

    I like this idea, I always pined to see it support by the map format + game engine. This was supported on pyOT, the map format was split into sec(tor) files and supported an instance dimension. The server was able to dynamically change the instance while running there might of been a limitation...
  6. soul4soul

    Idea for New Server

    Having every single item obtainable is much less important then having good quests and lure. It's equally important that quests are solvable, yes you want it to be hard but making something so hard to achieve that no player ever solves it, that is a total waste of time and resources. Having...
  7. soul4soul

    After almost a decade I returned to Tibia

    Nice to hear. Are you doing all the quests along the way? One of the few things that kept me motivated to keep playing and leveling was the ability to do more quests. Even doing the long annoying ones slowly while chatting to others.
  8. soul4soul

    Lua Help Change Gold

    That looks good, what isn't working?
  9. soul4soul

    Lua Help Change Gold

    You can add new options to the change_gold.lua script. This is a default script in TFS. local config = { [ITEM_GOLD_COIN] = {changeTo = ITEM_PLATINUM_COIN}, [ITEM_PLATINUM_COIN] = {changeBack = ITEM_GOLD_COIN, changeTo = ITEM_CRYSTAL_COIN}, [ITEM_CRYSTAL_COIN] = {changeBack =...
  10. soul4soul

    OpenTibia OT Monster Converter

    I know, I don't agree with that PR for reasons I mentioned in the PR and TFS dev agreed with my comment, not that it's a contest of them agreeing but pointing out the preference to merge #2875 so that's what I'm waiting on. I started to update my tool but figured out fixing the problem in TFS...
  11. soul4soul

    OpenTibia OT Monster Converter

    Thanks for the report, I was hoping this PR Make monster loot count accept count higher than 100 by EPuncker · Pull Request #2875 · otland/forgottenserver (https://github.com/otland/forgottenserver/pull/2875) gets merged into TFS. Since it doesn't look like that will happen anytime soon I will...
  12. soul4soul

    OpenTibia OT Monster Converter

    Thank you for the report. I fixed the issue for the next release. If you can build from source it's available now.
  13. soul4soul

    OpenTibia OT Monster Converter

    To I learned. As long as it's not every id the feature is still viable, errors will be reported for ids that have multiple mappings.
  14. soul4soul

    OpenTibia OT Monster Converter

    The tool CAN convert cipsoft mon files but the loot will be client ids. Eventually I will add a feature to enable converting between client id and server id.
  15. soul4soul

    OpenTibia OT Monster Converter

    The information from TibiaWiki is only as good as what the community provides. Right now abilities aren't generated unless all of the information needed is available. TibiaWiki Dragon TibiaWiki True Dawnfire Asura Notice the spell contain scene information which has the key details about...
  16. soul4soul

    OpenTibia OT Monster Converter

    OT Monster Converter OT Monster Converter is a tool for converting monster files between the various formats used by open tibia servers. Any supported input format can be converted to any supported output format. The program is flexible enough to allow the same input and output format which is...
  17. soul4soul

    Tibia 11+ Downgrade tool

    @Evil Puncker I was playing with this tool today and realized spiderOT posted the source code on github. It would be a good idea to post this requests as github issues so they aren't lost in the pages of this thread. GitHub - Arch-Mina/ClientConverter (https://github.com/Arch-Mina/ClientConverter)
  18. soul4soul

    Lua TFS 1.3 - Eat a demon shield!

    For the most part you can just add the item to food.lua script. First, Register the item usage as an action and have it call the food.lua script otland/forgottenserver (https://github.com/otland/forgottenserver/blob/master/data/actions/actions.xml#L48) Second, Add the item to food array in the...
  19. soul4soul

    Lua Ferumbras Lever

    Looks good, Line 97 could be improved. if Game.createMonster("rift invader", position) then to if Game.createMonster("config.summonName", position) then
  20. soul4soul

    Monster attack spell. tfs 1.3

    You are hitting this open issue Revscriptsys Monster · Issue #3485 · otland/forgottenserver (https://github.com/otland/forgottenserver/issues/3485). There are 2 PRs open which fix the issue.
Back
Top