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

    Scripter Scripter, programmer, designer looking for work

    Hi, I am looking for work, preferably full time but can also do smaller tasks. I can script in LUA program in C# edit dat and otb files and create maps. I've been professionaly working in game dev for about 5 years. To make it clear - I'm looking for a paid job. If you wish to see what I can...
  2. miens

    How do you create big amouts of content?

    Hi! Recently when developing my server I came to the point when all the systems are more or less done and I just need to add all the world content (map, monsters, quests). And at this point I realized that if I will continue to do it like before (on my own and in free time) it will take years...
  3. miens

    Rotating character with wsad?

    Hey, is there any option to rotate character on ot client using wsad buttons? Its just so counter intuitive to switching to arrows when you wish to rotate...
  4. miens

    OTClient to automatically download new .dat file?

    Hi! As I'm making updates for a server I came to conclusion that I need to modify tibia.dat file. Is it possible to set up otclient to download / update this file from my server? Is there any way to ensure client has newest version of dat file?
  5. miens

    [poland] Three Dominions [custom] Open Alpha, Tibia redesigned...

    Hi everyone! Three Dominions server is open for alpha test for a month! Experience Tibia like you have never played it before. Writing what makes this server special would end up in large block of text you would ommit anyway so we prepared nice video about it! Visit our page: You can donate...
  6. miens

    Lua item level restriction

    Hi there! Im using tfs 1.0. I've been playing with wands recently and removed level restriction on Wand of Everblazing in weapons.xml (removed level="65"). But when I logged in to the game I noticed it still requires level 65. I tried to set the required level to 0 but it didnt change anything...
  7. miens

    Lua cant advance in skills

    Hello! Im using tfs 1.0. For some reason characters on my server cant advance in any skills. When I fight creatures skills percentages are not growing. I checked my vocations xml and all skills multipliers are set to 1 there. I also checked config.lua but "rateSkill" is set to 3. I have no idea...
  8. miens

    RME trim map

    Hi! My map is much bigger than I need it to be. How can I trim the size of the map preserving selected area or set of tiles? The only solution I came up with was to move the area I want to preserve to the corner of a map and change size of the map in properties. But Im not sure in which corner I...
  9. miens

    Compiling Cant connect to game after tfs 1.3 recompilation

    Hello! Title pretty much says it all. I have recenly recompiled tfs 1.3 to use client version 10.41 this is the only thing i changed in the project. After logging in with otClient and selecting character client is stuck on 'connecting to the game server..." popup. Anyone got any idea what might...
  10. miens

    Invalid authentifiaction token error

    Hello! Recently I decided to recompile TFS 1.3 so that it uses client version 10.41. It took me longer than I would like to admit but it works now :) Anyway I got this problem with ot client now: when I try to login using client version 10.41 I get popup message saying "invalid authentification...
  11. miens

    Lua set vocation not working as intended

    Hello. Using tfs 1.0. I am trying to set player vocation from script, more or less like the Oracle. It works - changes the voc to selected id. But after I log out my vocation goes back to what it was previously. To make it even more strange - profession is saved in database correctly. But still...
  12. miens

    Is it possible to make m lvl based weapon?

    Hi guys, I'm wondering if it is possible to make weapons use your magic level instead of sword etc for fighting purposes. Is it achieveable without editing source code?
  13. miens

    Solved tfs 1.0 setAttribute ITEM_ATTRIBUTE_ATK not working

    Hey I had a spell modifying item attribute in tfs 1.2 and everything worked fine. I had to switch to older version and now when I call the same method (setAttribute) its not changing anything and even returns null. I tried debugging it for hours with no effect. Any ideas what might be wrong...
  14. miens

    Lua Custom Decay

    Hi! In my server when certain monster gets a hit there is a chance he drops an item on his position: function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin) if math.random(0,100) >50 and primaryDamage+secondaryDamage <...
  15. miens

    rme - cant see lower levels

    Hi. I want to make stairs to the underground. And I want the stairs from the lower level to be visible on ground level. Unfortunately when I delete all items from ground level the tile becomes black and you cant see anything from lower levels. How can I make a tile transparent? Please see...
  16. miens

    Help with referencing to items held by offline players

    Hi! In my ots I wanted to make a spell that would modify weapons attack value but only temporarily. So I Almost made it to work with weapon:setAttribute(ITEM_ATTRIBUTE_ATTACK, 100) but then I need to take the bonus back after some time. So I decided to use addEvent for this. local...
  17. miens

    How to make new usable item?

    Hi, I need to make new item that would have "use with" option. I used OTItemEditor 0.5.2 created a new item and selected "moveable" "pickable" and "usable" tickboxes. The usable's tickbox text is red for some reason. After I edited items.otb I copied it to client together with new tibia.dat file...
  18. miens

    Is it possible to make targetable instant spell?

    Hello, I was toying with spells recently and I came to conclusion that I need instant spells that need target. Similarly to runes. So as the title says: is it possible to make spells that turn your mouse cursor to crosshair so that you have to select target? All ideas are welcome even if it...
  19. miens

    Conroling projectile speed

    Hello I wonder if there is any way to controll the speed of projectile when using for example hmm rune. If so how? And if no one knows if it can be done can you at least point me in the direction where I should look for it?
  20. miens

    Cant create new Variant

    Hello, as I was toying with spells and lua I encountered a problem. Everytime I am trying to create a new Variant, Tile or Position I get error saying that global 'Variant' is a nil value. What might be the reason for this?
Back
Top