• 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

    Item that repairs boots

    I feel kinda stupid... I tried everything except using the item on myself and the script... kinda worked. I want to use the repair item on the boots and repair them. I also don't want the repair tool to disappear. What happened now was that when I used the tool on my player the tool itself...
  2. J

    Item that repairs boots

    Still doesn't work :/ No error in the console as well :(
  3. J

    Item that repairs boots

    I'm trying to create an item that when used repairs soft boots. I have this code: actions/scripts/repairshoes.lua local boots = { [12671] = {id = 6132} } function onUse(cid, item, fromPosition, itemEx, toPosition) if boots[item.itemid] then doTransformItem(item.uid...
  4. J

    Disable hotkeys while typing

    I'm using hotkeys like the letters F and R and numbers instead of F1, F2 etc. When I'm typing in game the hotkeys aren't disabled when I'm using WASD walking so I type all sorts of spells while typing. Is there a way to fix this? I have searched and found a post but the code there didn't work.
  5. J

    [TFS 0.3.6] [8.60] Mysql Error

    The server doesn't seem to save a error log. the one in /data/logs is empty. Is there a setting for it to save a log?
  6. J

    [TFS 0.3.6] [8.60] Mysql Error

    I think I know why this error occurs now.. everytime I do a server save I get the error: Failed connecting to database - MYSQL ERROR: Can't connect to MySQL server on 'localhost' (10061) (2003) The server is very new so there's not much that has been lost, I've got a backup I've used to reset...
  7. J

    [TFS 0.3.6] [8.60] Mysql Error

    I think I have messed up the server. Everything worked fine for a couple of hours when I decided to do a server save through the TFS console. The moment I did that the MySQL server crashed, so I restarted the server, then a couple of minutes in it crashed again and the log said something about...
  8. J

    [TFS 0.3.6] [8.60] Mysql Error

    Ah ok! I don't think I have made any changes to the code there. I'll do as you said and wait for the problem to happen again and check the website and other websites and report back, thanks! :)
  9. J

    [TFS 0.3.6] [8.60] Mysql Error

    Hmm what are the source files exactly? I don't think I have messed with the engine files for Uniserver if it's those you mean?
  10. J

    [TFS 0.3.6] [8.60] Mysql Error

    The website is always down when this happens, I haven't tried normal websites though so I will do that! I also noticed that I had opened port 3306, could it be because of that? I have closed it now.
  11. J

    [TFS 0.3.6] [8.60] Mysql Error

    Contabo says they have DDOS protection but I'm guessing it's not Fort Knox level? Any tips on anything I can do, however small it is?
  12. J

    [TFS 0.3.6] [8.60] Mysql Error

    Hmm that might be it because I can connect to the database and the server is running fine for some time and then this happens. Although I cant find MySQL as a service when the server is running. But I can't find a guide for settings up an OT that says anything about installing MySQL as a...
  13. J

    [TFS 0.3.6] [8.60] Mysql Error

    I've launched a new OT server on a vps machine. Everything's been working fine for a couple of days but all of a sudden I've been getting this error: Failed connecting to database - MYSQL ERROR: Can't connect to MySQL server on 'localhost' (10061) (2003) The weird thing is that I get this...
  14. J

    [Sweden] [8.60] Highland | RL/Custom

    Hello! This is our first OT server. We've been working on it for quite a while and would like to test it. All feedback on how we can improve the server is more than welcome. Thanks! :D IP: highland.zapto.org Port: 7171 Client: Tibia 8.60/own client Uptime: 24/7 Hosted in: Sweden Website...
  15. J

    [TFS 0.3.6 Znote ACC] Random temple spawn for new characters

    Thank you so much!! I deleted this code from templebug.lua I have no idea why it even exists but the spawn is back to normal now, thanks again! :) function onLogin(cid) if getPlayerLastLoginSaved(cid) == 0 then local p = getArea(getTownTemplePosition(getPlayerTown(cid)), 5, 5)...
  16. J

    [TFS 0.3.6 Znote ACC] Random temple spawn for new characters

    Here's my login.lua local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then...
  17. J

    [TFS 0.3.6 Znote ACC] Random temple spawn for new characters

    I'm having a issue where newly created characters spawn at random locations around the temple. It's always inside the temple but never in the middle where the spawn should be. Sometimes a character spawns a few squares to the left inside a wall and sometimes just 2 blocks south of the middle...
Back
Top