• 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

    TalkAction [TFS 1.3+] Prison System [Free Services Order]

    Haha, obligatory work in order to be released. Will be funny to see player's reaction to be sent there xD. Looks good, great job and well explained with the comments.
  2. Tofame

    Compiling [Windows] Compiling on Visual Studio 2022 - Boost Error required 1.53.0 minimum

    You removed your source from google disc. The message says: "Preview is not accessible. Files were moved to the owner's trash bin.". From what I've heard though, it was already resolved for you on github, that you were using outdated src with new compilation method for newest ones.
  3. Tofame

    TFS 1.X+ Item what can be used only by player what get it.

    https://streamable.com/gwyfdc edited it again and it looks like that now. Works fully, and well, enjoy.
  4. Tofame

    TFS 1.X+ Item what can be used only by player what get it.

    woah, I'm so satisfied now, having it completed. Did a lot of testing, looks a little bad atm, but it works so I publish. Both luas go to actions/scripts this was for the chest giving the exp scroll (26434 is ID of the scroll, you will probably have to change it to your own scroll)...
  5. Tofame

    Found this recently hope you enjoy :) OTCv8 + Sources

    Y'all reminded me when I paid 100 PLN for CS:GO and it was released for free. Still hurts, but I live with it..
  6. Tofame

    Found this recently hope you enjoy :) OTCv8 + Sources

    You all realize that Fresh said that the one who confirmed the virus inside are harry potter characters? facepalm. There is a virus though, and that's confirmed by Sonic the hedgehog.
  7. Tofame

    Feature Protection Time

    don't storages make it possible to set for player his own protection time? like: some players would have 7s some 10s for example? anyway, that's for most cases useless and agreed that it's better written without storages.
  8. Tofame

    Looking for best source to start with 10.98 version project.

    tfs: GitHub - otland/forgottenserver: A free and open-source MMORPG server emulator written in C++ (https://github.com/otland/forgottenserver) If you use master-branch (we call it tfs 1.5) then you get to use tibia 12+, if you go to releases and choose 1.4.2 then you can use tibia 10.98. Both...
  9. Tofame

    on screen killing message

    we don't have your death system bro xD you didnt tell us version of ur engine either. My guess is that you have something like that: (guess based on assuming that you have tfs 1.x) player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "death notification sent on chat.") and you want it to change...
  10. Tofame

    [TFS 1.4] Small Upgrade System (allowed wand and rods)

    I completed the thing with stones that you wanted. I will also soon create pull request on her github. It seems that there were minRequireLvl and maxRequireLvl settings but they weren't used at all in the script. So I used them and finished the script. Open the script and find this line: local...
  11. Tofame

    [TFS 1.4] - Faster skill training with certain weapons! (on certain mobs!)

    I can't edit so there is fix that I didn't notice at first: (in revscript version) line 29 if self:getSlotItem(CONST_SLOT_LEFT):getId() then change to: if self:getSlotItem(CONST_SLOT_LEFT) then Otherwise, it sends errors to console if you dont have weapon equipped at all.
  12. Tofame

    Spell [TFS 1.4] Summons&Pets

    Yo, Today I bring to you working summoning spell (2 versions that differ a little) and hide spell that is different from other available on forum, because you can actually exclude monsters that you don't want to be removed upon usage. Tested working on TFS 1.4.2 and that's the version I can...
  13. Tofame

    [TFS 1.4] - Faster skill training with certain weapons! (on certain mobs!)

    Thanks for all your explanations. I just finished converting it to revscript and will update the main post now.
  14. Tofame

    [TFS 1.4] - Faster skill training with certain weapons! (on certain mobs!)

    thanks for info, I didn't know that lol :D Looking on that it indeed is better. Though, I think onHealthChange is a bit more flexible - allows for sending effect on creature (like I did in original script) and you can limit it to monsters. onGainSkillTries I think will depend on player and thus...
  15. Tofame

    [TFS 1.4] - Faster skill training with certain weapons! (on certain mobs!)

    Yo, The anime OT that existed 10 years ago had interesting system in which you had training weapons that allowed you to get more skill tries than usually and I just wanted to bring it to modern tfs (old version should work on any tfs 1.x, new one requires revscript system so its 1.3-1.5) example...
  16. Tofame

    Most stable distro

    On official tfs github rep you have 1.4.2 in releases. This is the most stable and Imo the best option that can be easily compiled and modified. So far Ive noticed only 2 bugs that you can easily fix/patch NPC bug fix: TFS 1.X+ - [TFS 1.4.2] NPC Error: Argument -1 has out-of-range value for...
  17. Tofame

    TFS 1.X+ How to have attack speed scalling with skill level?

    Thank you very much, I compiled and it works. edited: Could you tell me that if I wanted to limit speed would this be okay? uint32_t Player::getAttackSpeed() const { uint32_t extraSpeed = getSkillLevel(SKILL_FIST) * 10; const Item* weapon = getWeapon(true); if (extraSpeed >...
  18. Tofame

    TFS 1.X+ How to have attack speed scalling with skill level?

    Hi, I've found this thread: https://otland.net/threads/fast-attack-depends-firstskill-tfs-1-x.267982/ I changed: uint32_t getAttackSpeed() const; for uint32_t getAttackSpeed() const { int32_t SpeedAttack; SpeedAttack = vocation->getAttackSpeed() - (getSkill(SKILL_FIST...
  19. Tofame

    MoveEvent [1.3] Zombski 🧠🧟‍♂️

    Any way to fix this? :p tfs 1.4.2
Back
Top