• 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!

Recent content by Batalj

  1. Batalj

    Attempt to call method 'getNameDescription'

    I swapped and now it works, however it looks like this now: How to get rid of all those numbers? I fixed this by recompiling and changing out in container.ccp os << "{" << item->getClientID() << "|" << item->getNameDescription() << "}"; for os << item->getNameDescription(); Thanks for...
  2. Batalj

    Attempt to call method 'getNameDescription'

    I have problem with loot not showing when killing monsters. This is the error I get: I am using TFS 1.3 and this is the /scripts/monster.lua code I have at the moment: -- Rarity Animations local rare_popup = true local rare_effect = true local rare_effect_id = CONST_ME_STUN -- Custom...
  3. Batalj

    Can't open doors, getting error.

    Tfs 1.3, it should be theforgottenserver master pack but have had to swap a couple of things to make npcs to work etc.
  4. Batalj

    Can't open doors, getting error.

    Hello! I am getting this error when trying to open doors. Ive tried to change in both global and compat to try solve 'isInArray' If I switch 'IsInArray' to 'table.contains' I get this error: Does anyone know what I can do to solve this?
  5. Batalj

    Converted to TFS 1.4 got Lua Script crash on startup.

    Yeah, I have no clue what's wrong. The map is the forgotten = original one in the datapack... Somehow it cant load the scripts anyways and it doesn't give any errorcode, it just closes down. I even did this thru cmd and there it doesn't show anything either, just stops... I even tried with...
  6. Batalj

    Converted to TFS 1.4 got Lua Script crash on startup.

    So I recently decided to try go TFS 1.4 from 1.3 and downloaded this one: GitHub - otland/forgottenserver at v1.4 (https://github.com/otland/forgottenserver/tree/v1.4) I compiled it and it gave no errors, however on startup I get error with Lua Scripts(Data/Scripts) files. I tried to delete one...
  7. Batalj

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

    I am using the latest one here: Releases · slawkens/myaac (https://github.com/slawkens/myaac/releases) Tried the master schema.sql, still gives the same error... Maybe its time for a new compile and datapack... Is there any newer on Github? I use this one_ GitHub - otland/forgottenserver: A...
  8. Batalj

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

    Yeah, I have deleted the database a couple of times and reloaded both schema.sql and the www file i use. Could it be that the Myaac-master is interfering with this premium_Ends_At at some way so it messes it up? It says it support it on Github, but who knows since its loading a couple of files...
  9. Batalj

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

    Since thats the one I found, latest forgottenserver-master pack on github.. Will look at it, thanks for reply. 1634074002 Now I got this error:
  10. Batalj

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

    Does this mean its wrong somewhere in the .exe file/compiling or in the data pack? Can Probebly try solve myself if someone know where the error is.
  11. Batalj

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

    Ive managed to fix the issue with compiling. However now when I try to talk to task npc and promotion npc it gives me the following error: Ive tried to check if everything is insert corretctly according to "Better premium time handling" and it seems everything is put correctly there. Anyone...
  12. Batalj

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

    Did add those in the database, however now I get alot of errors, most of which are connectet to "enum" 1633980139 Still looking for an solution, seems to be bugged...
  13. Batalj

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

    Still havent been able to solve this.
  14. Batalj

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

    It solved the compat error. I am using TFS 1.3. New error codes:
  15. Batalj

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

    function isPremium(cid) local p = Player(cid) return p and p:isPremium() or false end
Back
Top