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

    Possible to raise max hp?

    2,147,483,647 is the maximum positive value for a 32-bit signed binary integer. I don't think it's possible bro :p Edit: do as WibbenZ said :D
  2. A

    Error script.lua

    To me it looks like the argument 'thing' is nil, try printing it and post the output. Add this to the beginning: function onLook(cid, thing, position, lookDistance) print(thing) for k,v in pairs(thing) do print(k) print(v) end
  3. A

    Making a new ot, need some feedback on my mapping!

    One thing I see mappers do is to "over decorate" with flowers/trash/stones and that tend to become quite messy, but the roads are clear and I like this mapping!
  4. A

    [Sweden] Heartbeat Gaming 8.6 | Real Map | Started this week!

    I made 2 characters on the website but I cannot log in via the client. It tells me that I do not have any characters...
  5. A

    [France] Tibia Rocks 10.77-10.76

    Bump.
  6. A

    Solved How to create database for highscores?

    No that "query" is a complete mess. Let's assume your table looks like this: account_id player_id vocation kills deaths attempts monster Then highscore() would look something like this: function highscore(player, monster, killed) -- If no record, create new local results =...
  7. A

    Solved How to create database for highscores?

    Before you proceed I'd make the DB table look right. You should always have a field set to primary auto increment, e.q. a field called "id" just to keep track of everything (you can read this http://www.w3schools.com/sql/sql_autoincrement.asp). Then, there's no need to have a vocation field...
  8. A

    Solved TFS 1.2 system.lua problem

    You're not including your lib-files correctly. Look in global.lua and make sure you load all your files from the lib-folder.
  9. A

    [France] Tibia Rocks 10.77-10.76

    Currently there are no official rules against botting, but I want this server to be kind of "hard work to succeed". I'll set up a warning system for botting and I'll be active in trying to catch them. We'll see how it goes, I have a feeling that there wont me much activity on the server...
  10. A

    OpenTibia [10.76] Remere's Map Editor

    Anyone got the source for RME 10.76/10.77? The source on github is for 10.53 or something.
  11. A

    [France] Tibia Rocks 10.77-10.76

    No, Oramond is missing at the moment.
  12. A

    Just an idea

  13. A

    Need some help with this shop script!!

    The error makes no sense since you don't have a 'Test' column in your query... Are you sure you haven't modified this? What does your table 'z_ots_comunication' look like?
  14. A

    Just an idea

    Do you recognize this place? :D
  15. A

    Solved Svargrond arena [TFS 1.0]

    I'm not really sure but it seems like the storage values are not set after the kill. You could try to replace line #7 with this: local player = Player(cid) to local player = cid:getPlayer()
  16. A

    Need Help with NPC

    What TFS version are you using? Try looking in data/npc/lib/npcsystem/modules.lua and find function StdModule.travel() and post it here.
  17. A

    Solved Problem with checking if player exists

    That's the function I was looking for, thank you very much!
  18. A

    Solved Problem with checking if player exists

    Thank you for the reply, but this wont solve the problem. I need to check if the player exist in the database. If the player X exists, but is not online I want to return true. I cannot find a functions which does this in the TFS 1.1 package, so I think I will have to make a separate query that...
  19. A

    [France] Tibia Rocks 10.77-10.76

    As far as I know there are not that many servers that are as "vanilla" as this one. They always have some kind of "events" (all the same, zombie/LMS/Team Battle/etc.) or infinite runes/arrows, casinos etc. I understand what you mean, but this is a good base to start on. If you don't mind, please...
Back
Top