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

    opentibia lua documentation?

    the first link seems quite good, the second one doesn't have that many functions. Is the first one for 1.x versions or only 1.0? I'm currently using 1.2
  2. Simbaclaws

    opentibia lua documentation?

    Is there any place on this forum where there is documentation for all the function calls available to opentibia and such? I would like to start learning lua, I've done some lua in the past for warcraft 3 object generation and have a basic understanding of how the code should look like. I also...
  3. Simbaclaws

    Lua Shop.lua

    This query is the cause of your error: "DELETE FROM `z_ots_comunication` WHERE `id` = " .. id .. ";" You could try going into something like phpmyadmin or mysql cli and execute the same query with the right parameters to find out what error message mysql gives or whether it executes at all. It...
  4. Simbaclaws

    Compiling Compiling error (visual studio 2015)

    Sorry for the double post but I saw this in another thread: The wiki for forgottenserver has a entire instruction manual for compiling under windows and it has links to for example the boost libraries and what I think also contains the pugixml libraries (in the sdk?) Make sure you follow these...
  5. Simbaclaws

    Need programmer

    If you're hosting from a linux distro that uses systemd you could simply put your server binary in a systemd service. This ensures that whenever your server is powered on it will always run the server, even if the server crashes it automatically restarts itself. But this is more meant as a...
  6. Simbaclaws

    Compiling Compiling error (visual studio 2015)

    Ok to make my answer a bit easier: here is what you need to do. Check out the documentation for installing plugixml here: http://pugixml.org/docs/quickstart.html#install The following lines are essential to making this work: The complete pugixml source consists of three files - one source file...
  7. Simbaclaws

    Solved Error code 111 when trying to access server

    My server seems to be running and seems to be working. I can login to the server but as soon as I select my character and press OK I get the following message: Connection refused, the server might be offline or restarting. Please try again later. (ERROR 111) Which I find odd because I can login...
  8. Simbaclaws

    How do I create an account on my server?

    So is it true that all encrypted passwords in my database are unsalted? I'm affraid of dictionary attacks and rainbow table attacks on my database. Should I continue whining until someone proposes a commit to the forgottenserver source code on github? I'll use the non salted sha1 to solve my...
  9. Simbaclaws

    How do I create an account on my server?

    yeah like I said I've already put account manager information in my config.lua I'm using 1076 tfs 1.2 but it just doesn't show up :/ yeah that's what I thought... insert it through the database. I was just wondering about the encryption and such. For example the post says that it uses sha1...
  10. Simbaclaws

    Solved How to run a server using webhost manager?

    yeah I know about windows remote access it's like vnc but for windows. :) did you know you can port forward a windows remote access port through a reverse tunneled shell so you can access the desktop from anywhere? Suppose your laptop gets stolen and you've setup a reverse ssh tunnel with a...
  11. Simbaclaws

    Solved How to run a server using webhost manager?

    Sinth: about your problem, if you're too stubborn to change hosting provider. You might want to ask your hosting provider to setup windows remote management. This way you can use a powershell to connect to the VPS so you can run windows commands on them. Like for example execute a .exe file...
  12. Simbaclaws

    How do I create an account on my server?

    Okay, so I've got my server setup and I've put account manager settings in my config.lua. However my otclient asks for a username a password an ip address and port to the server etc. Whenever I type in some username and password the server obviously responds: Account name or password incorrect...
  13. Simbaclaws

    Compiling Compiling error (visual studio 2015)

    On the github page in the vc14 folder it says: Remove pugixml from the repository. This could have something to do with your error. It concerns the following commit: https://github.com/otland/forgottenserver/commit/017b6f4fa65ffa6c1d8b82b5fee17163e75a681e Perhaps pugixml should be installed...
  14. Simbaclaws

    Help compiling TFS 1.2

    Check my last edits. Please provide some further information. What compiler you're using, what version of c++ what architecture, system information all that sort of stuff. If it's what I suspected it to be "a problem in the code" then I suggest downloading the latest version from github but I...
  15. Simbaclaws

    Help compiling TFS 1.2

    have you done a git checkout master? I suggest trying to update the master branch to the latest version. The internet tells me that atomic variables are not CopyConstructible and could be the reason why the copy constructor of std::atomic is deleted. The compiler generates a default copy...
  16. Simbaclaws

    dat and spr files for otclient?

    Thanks so much :D I really like how much support you guys give me.
  17. Simbaclaws

    dat and spr files for otclient?

    Thanks a lot for the files, I saw that the latest version which I compiled uses 1076 I checked items.otb in data/items and it said that it's patched for protocol 10.76 so I suppose I should have the dat and spr files for that version and use that version for my otclient. Also, that line of code...
  18. Simbaclaws

    dat and spr files for otclient?

    Does anyone know where I can download the dat and spr files for my otclient 1074? I don't know where to get them and I would like to be able to test my server. Also another question: how do I know which client version I have to use for my otclient to connect to my server? Can I somehow check...
  19. Simbaclaws

    Missing config.lua for tfs 1.2?

    Thank you that was exactly what I needed, however I got everything working without looking at the thread. Figured it out on my own. Now all I have to do is find out how I can get dat and spr files for my otclient (1074) and try to connect to my newly setup server :) Should I start a new thread...
  20. Simbaclaws

    Missing config.lua for tfs 1.2?

    yeah I already had it figured out, put up a edit. I'm gonna have to setup MySQL now. I already have a nginx server running on my pi. would you know of any server setup tutorial that guides you through the process of setting up your server?
Back
Top