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

    My old NPC is giving 225 items

    How about <action name="giveitem" value="2160" amount="10"/>?
  2. wesoly136

    Windows TFS crashes on startup

    Other TFS = errors in compiling again + I do want that version..
  3. wesoly136

    Windows TFS crashes on startup

    What file? - - - Updated - - - .exe? Nothing, just compiled it with some problems and even more help, described here.
  4. wesoly136

    Windows TFS crashes on startup

    Hi! Maybe it's simple, but I didn't work with OTS for a long time and just don't know what to do. I think it may be .DLLs or something in config.lua
  5. wesoly136

    How to see passwords and make monsters destroy walls

    To see passwords you need to change the encryption to "plain" and then look for it in database.
  6. wesoly136

    Compiling Compiling on Windows with Dev cpp

    EvulMastah helped me a lot and after a few new problems(which we solved) there is another one: cannot find -lxml2 ld returned 1 exit status *** [TheForgottenServer.exe] Error 1 - - - Updated - - - Okay, problem with compiling solved. The solution of it was: 1. to find devpaks with the...
  7. wesoly136

    Compiling Compiling on Windows with Dev cpp

    I know, but which one? Any links or the name of it? :/
  8. wesoly136

    Compiling Compiling on Windows with Dev cpp

    Refresh :/
  9. wesoly136

    Lua Wut? Script doesnt execute!

    Maybe add a declaration in the monster's .xml file?
  10. wesoly136

    Compiling Compiling on Windows with Dev cpp

    Hi! I returned to make a server again and my first problem is: I have sources to TFS 0.3.6pl1 and tried to compile it with Dev Cpp. At first i had about 100+ errors, i solved most of them and now I have a few errors that I don't have idea how to solve. The compiling errors: Can you...
  11. wesoly136

    Linux SQL Database hacked

    Now it is calm xD But One player had a nick with illegal characters and when my brother was playing I gave him some premium points and this player with strange nick said to him that he will be banned for those points and he see them on phpmyadmin(he said also how many points my brother had). It...
  12. wesoly136

    Linux SQL Database hacked

    Red I think the 5. point from your post seems to be the best way. I have Sha1 passwords. The hacker just created a character and gave it group id. He can shutdown the server in that way. Also in database he can add news, delete all characters. He has full access to phpmyadmin. Now I'm going...
  13. wesoly136

    Select count(*) from

    Refresh
  14. wesoly136

    Select count(*) from

    I wanted to make a script that counts players from one guild(later it will check their levels) and I can't use this query in a script :/ query = db.getResult("SELECT COUNT(*) FROM guild_ranks WHERE guild_id = "..getPlayerGuildId(cid)..";") doBroadcastMessage("Answer is: "..query.."!",22)
  15. wesoly136

    Vocations.xml wtf?

    Yea... Edit Solved, dedicated server reboot was required lol
  16. wesoly136

    Vocations.xml wtf?

    I just tried to set mana and hp regeneration and.. It completly doesn't work! It always regenerates 1 hp and 2 mp... :/ Other things like attackspeed work fine.
  17. wesoly136

    Inserting data from database to a table.

    I just need to check if the loging in player is a leader of any guild, but I also wanted to know how to do that :P EDIT Solved my problem in other way :P
  18. wesoly136

    Inserting data from database to a table.

    Refresh :/
  19. wesoly136

    Teleport problem in training area

    Did you test my script?
  20. wesoly136

    Teleport problem in training area

    function onStepIn(cid, item, position, fromPosition) if(not isPlayer(cid)) then return false end local neupos = {x=position.x-3, y=position.y, z=position.z, stackpos=253} if getThingFromPos(neupos).uid > 0 then doTeleportThing(cid, fromPosition, false)...
Back
Top