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

    Codicia - Development Thread

    Codicia represents years of dedicated work, stemming from the lessons learned and extensive testing conducted on my previous server, GreedOT. Today marks the alpha stage launch of Codicia, featuring four accessible accounts: 111111/codicia, 222222/codicia, 333333/codicia, and 444444/codicia...
  2. ralke

    TFS A* Algorithm :D

    There's no way that someone can fix a thing that isn't properly checked. And with this I mean, you should at least record or provide a screenshot, of why you think it has and error, and how it should behave. Don't post the code, post the proof that the system is not working how it should. As I...
  3. ralke

    Solved [Znote AAC v2 w/ Uniserver] PHP Fatal Error on Viewing Website (No SQL instructions)

    Go to your firewall and set entry and exit rules for port 80. I searched for: No connection could be made because the target machine actively refused it in And that says that the connection to the port wasn't reached...
  4. ralke

    cannot open data/npc/lib/npcsystem/main.lua: No such file or directory

    Hmm let's resume. We have an error where a script is attempting to find a KeywordHandler. attempt to index global 'KeywordHandler' (a nil value) And we recently have the fact that none of the modules of the npc is loading. But now I see that the modules.lua is exactly the same than the 3777...
  5. ralke

    cannot open data/npc/lib/npcsystem/main.lua: No such file or directory

    Well if nothing works the issue here is that you don't have any module working. Taking this reply Is the proof of it. I won't tell you to attach your modules here since they're large files. I suggest to back-up and then replace all the content from npc/lib folder for this one...
  6. ralke

    Lua NPC crash on farewell

    All the map related files are loaded on startup. Otherwise there would be unnecessary memory resourses just by loading changes on real-time (and lots of other reasons for not doing it). If you wish to take a look how the maps are loaded by sources just head to OTHire/source/map.cpp at master ·...
  7. ralke

    cannot open data/npc/lib/npcsystem/main.lua: No such file or directory

    Ok try: 1) This at the NPC .xml <parameter key="message_farewell" value="Good bye."/> 2) You can also try this on .lua FOCUS_FAREWELLSWORDS = {'bye', 'farewell', 'see ya'} self.npcHandler = handler for i, word in pairs(FOCUS_FAREWELLSWORDS) do local obj = {} table.insert(obj...
  8. ralke

    Lua NPC crash on farewell

    That exactly what you should do, probably you're missing something. But I wrote everything so you can start troubleshooting and that will help on moving forward. You can still look up for more clues, for example, here in sources there's -mostly- the functions of npcs that has to do something...
  9. ralke

    Solved OTClient Mehah, some top-bar panels doesn't show on login and they're not able to be hidden/shown

    Solved by @Nottinghster fix: panels/widgets saving positions · mehah/otclient@4b2457c (https://github.com/mehah/otclient/commit/4b2457c8ed459691d7c55ab9c05bbdb51b0dcfe7) Thanks! ^^
  10. ralke

    Lua NPC crash on farewell

    Well again, I haven't used OThire. But I guess that spawn.xml loads npcs based on their filenames right? So why not trying to copy and paste the file, call it TaskManager2.xml or something and spawn it separately? It's not a solution at all, but for the moment is something I would trigger just...
  11. ralke

    cannot open data/npc/lib/npcsystem/main.lua: No such file or directory

    It's the same thing, but using older functions. Go to main.lua and search for dofile(getDataDir() .. 'npc/lib/npcsystem/keywordhandler.lua') And the error says that is attempting to index a variable called KeywordHandler, that is here delcared as nil...
  12. ralke

    Change of payment for the house.

    Well I think you should change what this does g_game.removeMoney Maybe generating another function like g_game.removePoints instead? I haven't read the source code but I can only give you this idea by now. Regards!
  13. ralke

    forgottenloginserver for 10.98 change RSA

    Ok my friend you're missunderstanding a few things. Not sure what that gameserver.xml is because I don't use 10.98 versions of theforgottenserver, but, first of all. Use main branch from theforgottenserver, because it is literally a protocol that is supported on main branch (so why using a fork...
  14. ralke

    C++ Is it possible to convert all items from Asynchronous to Synchronous at same time?

    I don't see that flagging can be edited that simple. You should check ObjectBuilder source and search for Asynchronous parameter to see how it's handled by the software itself. Good luck! ^^
  15. ralke

    Solved "Temple position is wrong. Contact the administrator"

    Follow this video, next time try to open a new thread instead a bumping an old one from 2016. It's all ok! No worries on bumping, just is a good practice for the next time! Regards
  16. ralke

    TFS 1.X+ Spawn creature with script once and then it will respawn normally?

    @endziu2222 Ok what I suggest is to use a raid system such as this one https://otland.net/threads/xikinis-free-scripting-service-tfs-1-4-2.287753/page-3#post-2743659 Then you should do a few things. I'll give you an example of how to spawn a monster that died, in the same SQM it died, and spawn...
  17. ralke

    Windows Server not reading config/connecting to SQL?

    You should also check, in sources, if the piece of code that points to ConfigManager::load is pointing correctly to config.lua. Or at least read the function to know what is going on. For that open the whole proyect with visual studio and press CTRL + Shift + F to search for ConfigManager::load...
  18. ralke

    cannot open data/npc/lib/npcsystem/main.lua: No such file or directory

    You should first attach the code from your "genericnpc". It is trying to use main.lua as KeywordHandler, and that's why it literally says there's no such file or directory. Creating main.lua won't solve anything since it doesn't have the keywordhandlers. So, what we can do? Let's check the...
  19. ralke

    Lua NPC crash on farewell

    I don't think there's any storage involved in your error. because bye message is related to libs. Is there a chance that you could attach npc/scripts/lib/greeting.lua? Because somewhere there should be the data for npcHandler, and that somewhere generally is the lib that you're using for your...
  20. ralke

    AAC How to create landing page for mobile browser?

    Thanks for this! I litterally started to thing on making a header for each page, using the redirection. I'm at discord as always, felipe23. What I really need is to make the cellphone reads the site without sending the right bars to the bottom. Anything that is needed just tell me, the live...
Back
Top