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

    [TFS 1.5]reset level, life and mana, when acquiring vocation evolution

    as a first step i would suggest to put the code inside tags. This looks awful
  2. J

    TFS 1.X+ I want to learn basic TFS 1X functions

    Because this line is null i guess local player = Player(cid) local player = Player(cid) if player then local vocation = player:getVocation() local baseVocation = vocation:getBase() local promotedVocation = vocation:getPromotion() local newVocation = baseVocation ~= vocation and...
  3. J

    TFS 1.X+ I want to learn basic TFS 1X functions

    he wanted to have it this way not me :D i just wanted to explain that it should work either way.
  4. J

    TFS 1.X+ I want to learn basic TFS 1X functions

    What's wrong actually ? You have the table containing 5-9, 6-10, 7-11 and 8-12 in "vocations". I just tested it in LUA editor without tfs and its working. If getPlayerVocation(cid) returns a proper ID like 5 you will get a ID 9 in "newVocation.id" local vocations = { [5] = { id = 9, name =...
  5. J

    Stamina System TFS 1.5 7.72

    try to edit otcv8 features.lua inside modules game_features and look for stamina related feature and put it into 772 version.
  6. J

    TFS 1.X+ TFS 1.5 772 nekiro's downgrade - bigger packet size and Otcv8 features causing server crash on login

    The problem was indeed in json.lua Thanks man its visible now
  7. J

    TFS 1.X+ TFS 1.5 772 nekiro's downgrade - bigger packet size and Otcv8 features causing server crash on login

    Without adding this to ProtocolGame::login its working fine // OTCv8 features and extended opcodes if (otclientV8 || operatingSystem >= CLIENTOS_OTCLIENT_LINUX) { if(otclientV8) sendFeatures(); NetworkMessage opcodeMessage; opcodeMessage.addByte(0x32)...
  8. J

    TFS 1.X+ TFS 1.5 772 nekiro's downgrade - bigger packet size and Otcv8 features causing server crash on login

    Where can i find it ? in nekiro sources both branches 772 and 860 has the same. But i have my own key.pem and custom key in otcv8 so it should work either way right ?
  9. J

    TFS 1.X+ TFS 1.5 772 nekiro's downgrade - bigger packet size and Otcv8 features causing server crash on login

    Bump. Got back to the issue cant connect to server after applying following changes: OTCv8 detection, custom features packet, bigget packet size and bug f… · OTCv8/forgottenserver@2839d4d...
  10. J

    [TFS 1.3] Item Abilities via Lua V2

    Thanks man appreciate it ;)
  11. J

    [TFS 1.3] Item Abilities via Lua V2

    Does anyone else has this weird behavior that if take the item off the slot i still have all the conditions. If i equip another item it will reset and show correct values. TFS 1.5 nekiro downgrade. How to fix unequip/drop item to remove its conditions from player ?
  12. J

    [TFS 1.3] Item Abilities via Lua V2

    Fixed i had a typo in extensions.lua. so it would iterate only first index which is crit under special attributes
  13. J

    [TFS 1.3] Item Abilities via Lua V2

    For some reason on nekiro's 772 downgrade i cant see following attributes on items : Checked everything inside code no errors. Stats are loading fine i just dont see following abilities when i click on Item ITEM_ABILITY_MANALEECHAMOUNT, ITEM_ABILITY_LIFELEECHAMOUNT...
  14. J

    Solved cant login to my own compiled server

    it should be 127.0.0.1 instead of localhost. Also password needs to be encrypted by SHA1 in database. http://www.sha1-online.com/
  15. J

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

    Tested on TFS 1.5 nekiro's 772 downgrade works good on weapons but not on wands. I have the callbacks and everything that was mentonied here ORIGIN_WAND etc. But the wand damage is not added. I also tried it with this: Monster - Training Dummy with DPS calculation...
  16. J

    TFS on ARM? is possible?

    I have it for a year maybe. Instance was stopped for like 6 months, just started and its there. I dont have any data there that i need mostly just the docker compose configuration and stuff from github repositories
  17. J

    TFS on ARM? is possible?

    Yes if u compile it. Im running tfs on oracle free tier ampere VPS which is arm
  18. J

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

    I personally dont have experience with tfs 0.3.6. But i would always suggest to use the latest version possible. You will have no problem resolving issue since people are still working with latest tfs. Its easier to implement new changes that will come, or some scripts that you will find here...
  19. J

    TFS 1.X+ TFS 1.5 772 downgrade + OTclientV8 unhandled opcode 128

    Thanks i replaced sendOutfitWindow from the 8.60 and now its not throwing the error.
  20. J

    TFS 1.X+ TFS 1.5 772 downgrade + OTclientV8 unhandled opcode 128

    Hi im using TFS 1.5 Nekiro's downgrade 772. I uncommented source code for the addons, replaced outfits in ObjectBuilder in 772 from 854. Edited features.lua in Otcv8 if(version >= 770) then g_game.enableFeature(GamePlayerAddons) g_game.enableFeature(GameLooktypeU16)...
Back
Top