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

    Feature [1.5] add magicDamage in vocation.xml

    Good job and nice contribution. Obviously c++ is better for this case. Also, kinda weird that at some point this disappeared, Im currently at 0.4 and magDamage is here by default in vocations, maybe that's my distro being specific. If that's not in tfs master it should definitely be brought there.
  2. Tofame

    C++ [OTHire 1.0] Adding new skills - [Solved]

    ioplayer.cpp for(int32_t i = 0; i <= 6; ++i){ change 6 to 7. Maybe its even possible to just set it to SKILL_LAST not sure though. https://github.com/Ezzz-dev/OTHire/blob/1d9987cdbea118ad1a01a6f2bba66cc22c002d63/source/ioplayer.cpp#L559C2-L559C34
  3. Tofame

    C++ [OTHire 1.0] Adding new skills - [Solved]

    in enums.h enum skills_t { SKILL_FIRST = 0, SKILL_FIST = SKILL_FIRST, SKILL_CLUB = 1, SKILL_SWORD = 2, SKILL_AXE = 3, SKILL_DIST = 4, SKILL_SHIELD = 5, SKILL_FISH = 6, SKILL_LAST = SKILL_FISH }; add cooking here.
  4. Tofame

    My Autoloot System for TFS 0.4

    I think we can check if item has worth instead of "isInArray(autolootConfig.golds, item.itemid)". This way, this doesn't even require to update the array whenever a new currency is added in items.xml. Though, I'm not sure which way is more optimal...
  5. Tofame

    How can we discourage botting?

    I actually had a similar idea, but much more detailed. And also based on otclient, not cipsoft, it wouldnt work there. My idea was to show player a captcha window at night time (during the time most people sleep and majority are bots). 1. Language issue - toddlers dont play your game, they can...
  6. Tofame

    Error compile otcv8-The-Josh-Wife-Edition - Visual Studio

    There is no encryption reliable in any client that there is a source for. Its like expecting doors without a lock to be opened with a key - there is no lock, everyone can open. Anyway, Josh the wife edition is 1:1 otcv8, but otcv8 is atleast compilable, so....
  7. Tofame

    Error compile otcv8-The-Josh-Wife-Edition - Visual Studio

    Use official sources then.
  8. Tofame

    TASK DAILY

    Take any task system and while collecting the reward set the task's storage to 1. Then make an if check that will only allow player to do task if the storage is < 1. On Monday reset task storages to e.g. 0. (In onLogin script for example with checking the date). I'd show code, but no access to...
  9. Tofame

    Relation ClientId x ItemId (Server)

    There is a function like :getClientId. Either write xml parser that will read items from .xml and for each of them check for clientId (should give all client ids, though fromid toid might be tricky) or make a single-item talkaction checker.
  10. Tofame

    Lua -=[TFS]=- 0.4 8.60 Stamina Not Down HELP!

    use new engine, a one that has sources. You can keep your datapack (data), but .exe and other related files must be switched for another ones.
  11. Tofame

    Important news

    ". Ot server list is lame to see, with a couple ots with 300+ chars, most of them x999 or similar" Those lame ots got everything from otland, later paid a little to some coders to get some stuff done and they have all become a copy of another with all the features identical. The monopoly that...
  12. Tofame

    Linux What distro is currently best for running a client-based tibia 8.6

    p0tinho has probably used otx2 for more time than you could ever imagine and he says it is very bugged... So far, I've only launched fir3 elemental with me and other player, but from what I've seen for the last half year there were only 2 bugs (that I fixed) - 1. death list skipping summon...
  13. Tofame

    Linux What distro is currently best for running a client-based tibia 8.6

    tfs 0.4 by fir3 elemental would be an excellent choice.
  14. Tofame

    Games that started as OTs?

    Ravendawn has advertisments and playerbase while I think zezenia is quite dead - I'm not playing that, but I say it based on how nearly non-existent movement there is on discord and also players themselves on forum say it is a dead ots.
  15. Tofame

    OTAcademy Discord

    nothing as active as ota, 500 messages on #polish daily, many answered questions on support boards. I think there is mainly focus on tfs though, canary/otbr have their own discord.
  16. Tofame

    |Revscript request| Teleport after a Boss is killed

    @EkkoLua In this way: loop is not needed, the table is flexible and can easily be extended for other options like rewarding the player with item and other necessary things. Right now, it is positionOut only, as the guy requested.
  17. Tofame

    |Revscript request| Teleport after a Boss is killed

    teleport:setDestination should be other position, at the moment it is set to creature:getPosition (wchich is correct, because it tells where to create the script at, but the destination should be in config variables, near the teleportDuration for example. Actually, the best would be to not...
  18. Tofame

    TFS 1.2 Crash because of spell?

    here you go local combat = Combat() combat:setParameter(COMBAT_PARAM_AGGRESSIVE, false) function onCastSpell(player, variant) local manaAmount = player:getMana() local effectPosition = Position(player:getPosition().x, player:getPosition().y, player:getPosition().z) if...
  19. Tofame

    Games that started as OTs?

    Ravendawn. Definitely the most known nowadays, due to a lot of advertisments and hype inside tibia community. People say it's not tibia and well.... while it is not tibia anymore, since it used TFS engine as a base you could say that it started as an OT. A really good game worth trying. Still...
  20. Tofame

    I making YurOTS, and have some questions (Version Game: 7.6/7.7).

    Decrease your ego lol. Come to the ground, you are very high. But anyway, talking about the post it sounds good, but at the same time when something seems too nice it will probably not be like that in reality. Regardless, looking forward to you showing some progress. Good luck.
Back
Top