• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Ramon Bernardo

    CPU HIGH + STATS LOGS

    @Gesior.pl seems to be related to #44
  2. Ramon Bernardo

    Compiling [TFS 1.3 - 8.60] Problem to compile TFS [vcpkg x64 - MSVS 2019]

    Who wants to compile is the OP, not me
  3. Ramon Bernardo

    Compiling [TFS 1.3 - 8.60] Problem to compile TFS [vcpkg x64 - MSVS 2019]

    Have you make any changes? I managed to compile baiak-thunder without problem
  4. Ramon Bernardo

    I need to raise the version from 8.60 to 1098 (my TFs is 1.3 nekiro)

    Where did you see this? 1.4 is the best version so far But its up to u, I dont think you'll get help to get back to 10.98. Verify protocols and connection files.
  5. Ramon Bernardo

    I need to raise the version from 8.60 to 1098 (my TFs is 1.3 nekiro)

    From 8.6 downgrade to 10.98, has ~5k changed lines, its not just changing in definitions.h. Use a file comparator program with your source and nekiro source. Download forgottenserver and put ur changes.
  6. Ramon Bernardo

    [8.6] Server tools; distance/magic effects, minimap icons, outfit colors.

    Maybe, i will do it when have time ;)
  7. Ramon Bernardo

    Compiling Request TFS 1.4 Downgrade 8.6 compile

    Follow wiki to compile, its easy and see cmmt bellow
  8. Ramon Bernardo

    Have problem with player.lua and login.lua interfering with eachother.

    TFS VERSION? Try (player.lua) function Player.isPremium(self) return self:getPremiumTime() > 0 or configManager.getBoolean(configKeys.FREE_PREMIUM) or self:hasFlag(PlayerFlag_IsAlwaysPremium) end
  9. Ramon Bernardo

    Have problem with player.lua and login.lua interfering with eachother.

    read line 95 if player.isPremium() == 0 then boolean value here. use if player.isPremium() then
  10. Ramon Bernardo

    Prestige/Rebirth Question TFS 0.4 (8.6)

    This? UPDATE `players` SET `COLUMN_NAME` = 'REBIRTHS_VALUE' WHERE `players`.`id` = PLAYER_ID; COLUMN_NAME = rebirth column name REBIRTHS = ... (uint value) PLAYER_ID = ... (uint value) Ex: UPDATE `players` SET `reborn` = '2' WHERE `players`.`id` = 1;
  11. Ramon Bernardo

    AAC [MyAAC] [TFS 1.2] Character Auctions

    Character Auction for MyAAC (https://gist.github.com/slawkens/3cce6a075353fc6f2dd4ddf70fe7388a) or slawkens’s gists (https://gist.github.com/slawkens)
  12. Ramon Bernardo

    TFS 0.X Message after server saved

    For something precise, try: Game.cpp - Game::saveGameState below std::clog << "> SAVE: Complete in " << (OTSYS_TIME() - start) / (1000.) << " seconds using " << storage << " house storage." << std::endl; add if (shallow) { broadcastMessage("Server saved...", MSG_STATUS_WARNING); } else { //...
  13. Ramon Bernardo

    C++ [TFS 1.4] onLook: attempt to index local 'thing' (a nil value)

    For some reason, this error come from: luascript.cpp/luaTablePack I added brackets in for loop and receiv error. Reason? I do not know. old code for (i = n; i >= 1; i--) /* assign elements */ lua_rawseti(L, 1, i); if (luaL_callmeta(L, -1, "__index") != 0) {...
  14. Ramon Bernardo

    TFS 1.X+ Lootbag dissapear at gate of expertice

    Cannot replay this bug on master, only nek-1.4? hm
  15. Ramon Bernardo

    C++ [TFS 1.4] onLook: attempt to index local 'thing' (a nil value)

    I dont understand why returning null. Ive made a lot of changes to src and its been hard to track what i changed to give it this. Any suggestions where I should start? Im in this for a few hours...
  16. Ramon Bernardo

    Reward boss script tfs 1.3 problem

    need register on player login login.lua player:registerEvent("Boss")
  17. Ramon Bernardo

    TFS 0.X Upgrade Staff - Prevent use itself

    Remove .uid from cid cid == itemEx.uid
  18. Ramon Bernardo

    TFS 0.X Upgrade Staff - Prevent use itself

    Try this if cid == itemEx.uid then ... end or if cid == itemEx.uid or isCreature(itemEx.uid) then return doPlayerSendDefaultCancel(cid, RETURNVALUE_NOTPOSSIBLE) end
  19. Ramon Bernardo

    Shop by command

    See here, here and this. if player:addItem(item, amt) then ok... end if player:removeItem(itemid, count) then removed. end
Back
Top