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

    How to make a Door/Tile available only for Premium Players

    In this case you can also use return player:isPremium()
  2. Lordfire

    Problem with Install

    Well... try visiting localhost/install
  3. Lordfire

    Compiling Where i can find this things in the c++ code

    Database connection handling is done in a source called database.cpp, and house-related stuff on house.cpp, and talkactions stuff on talkaction.cpp. Easy enough, huh?
  4. Lordfire

    Lua Need Script Auto Ban Ping. Use TFS (0.4) 8.60

    Of course, the OP mentioned ping only. You can block all ports except OT ones, create a new topic if you want to.
  5. Lordfire

    Need help with importing MySQL to phpmyadmin

    Yes, create a new database. You can have unlimited databases in a single mySQL server.
  6. Lordfire

    Need help with importing MySQL to phpmyadmin

    Let me explain better: there are hard connections between a lot of tables, for example: for an item to be on "player_items", there has to be an existing player for this item to be linked to. That's why you can not delete (drop) an entire table, because of those links (called foreign keys). If...
  7. Lordfire

    Lua Need Script Auto Ban Ping. Use TFS (0.4) 8.60

    You can ignore ping packets at computer level by adding a rule to iptables: iptables -A INPUT -p icmp -j DROP
  8. Lordfire

    Need help with importing MySQL to phpmyadmin

    Well.. you can not delete players table if you do not delete every other table that refers to players first. That's pretty much 80% of the tables. Why would you delete players table in the first place? The second error is because 8.60 version had 2 different clients released, and the one you...
  9. Lordfire

    Search for item inside a house, binary map map_store

    Unblob/parse the data field and search in there. What have you tried to do already?
  10. Lordfire

    Help party config-lua

    Man, just read the fricking topic. Gosh, nobody here is your slave.
  11. Lordfire

    NAT loopback problem

    DMZ is NOT related to loopback. If localhost did not work, try connecting with 127.0.0.1 or 0.0.0.0 as IP. If it is not possible The reason pointing a name address to 127.0.0.1 works is because of something called virtual host, Google it if you want to unblow your mind :P
  12. Lordfire

    Storages or Database

    If you want to imlement something like a multiple kill counter, I suggest you hook the onKill/onDeath event to increase the murderer's kill counter and addEvent to decrease it after a specific amount of time, or store the amount of kills and the time of the last kill in two storages. This should...
  13. Lordfire

    Linux How can everyone can access my site [Ubuntu][Gesior]

    Could you please ask your question on a forum of your language? Do NOT, EVER, BY ANY MEANS, chmod 777 on ANYTHING. It's DANGEROUS.
  14. Lordfire

    problem starting tfs 1.0 on win 7 32x

    Your config.lua file is messed. Maybe you forgot a " character, or you entered characters not allowed (try using only English characters)
  15. Lordfire

    [8.60] 50 Random Generated Islands

    Do you plan on opensourcing this tool?
  16. Lordfire

    How does reward chests work?

    Hello fellow Tibians. I'm interested in knowing deeper how the reward chests introduced in v10.2 works properly. I have a few doubts: - Who gets the reward? Besides who participated directly against the boss (the blocker and the shooters), who more gets the loot? Healers of the blocker? If...
  17. Lordfire

    Compiling The Forgotten Server 1.1 SQLite

    Probably because it is easier to maintain support for just 1 database service, and to this I absolutely agree. Although with a good abstraction layer it would be easy as cake to use the RDBMS you want. edit: Jo3's answer right below is much more precise ;) GOD Bon, maybe you'd like to check...
  18. Lordfire

    Compiling The Forgotten Server 1.1 SQLite

    Are you pretty sure on what you are saying? SQLite is significantly faster than MySQL since it's much simpler to manipulate a file than to communicate with a daemon through a socket, is much easier to backup and share as you may just make a copy rather than dump some weird transactional...
  19. Lordfire

    OpenTibia [NEW] Flag calculator

    As long as I know yes, they can be found here: https://github.com/otland/forgottenserver/blob/1cd9a186c1a1b311c273cfc2b5c09f64c3b50488/src/const.h#L475 TFS flags go up to "Has infinite premium account", the other ones are from Open Tibia...
  20. Lordfire

    OpenTibia [NEW] Flag calculator

    Since the classic flag calculator is offline and the alternatives we have are not really clean and usable, I decided to mix some good features of the flag calculators I know. I then conceived it, the new, the improved OT Flag Calculator! Enough of words, let me show you: See it? No clutter...
Back
Top