• 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.X+ OTClientV8 in game shop empty window - TFS 1.5 Nekiro downgrade 7.72

    Hi, kinda embarrassed because it was working at some point of the development but now its not and i spent several days trying to get it working but its not. First of all i have raised network limit and everything that was covered here TFS 1.X+ - TFS 1.5 - Downgrade Nekiro 7.72 - Add in-game...
  2. J

    TFS 1.X+ Monsters don't turn invisible

    Well im not tfs expert maybe start with monster, conditions and spells sources
  3. J

    TFS 1.X+ Monsters don't turn invisible

    How should we know what changes you made :D I would suggest to compare your branch against original nekiro’s git repository to find what is different
  4. J

    TFS 1.X+ HELP PK

    Where did you add that piece of code ? So i can try to replicate the issue //edit since its solved never mind :D
  5. J

    Compiling Help me , I´m frustrated xd

    Why do you need to compile it on windows ? Download docker and compile it in docker linux container and run it from there. You can still connect to the server from your windows machine. Super easy comparing to visual studio.
  6. 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
  7. 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...
  8. 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.
  9. 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 =...
  10. 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.
  11. 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
  12. 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)...
  13. 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 ?
  14. 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...
  15. J

    [TFS 1.3] Item Abilities via Lua V2

    Thanks man appreciate it ;)
  16. 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 ?
  17. 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
  18. 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...
  19. 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/
  20. 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...
Back
Top