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

    [USA] Thorsan 8.0 (Mid-Rates) RL-Map Server, Online NOW!

    Seeing all these accounts popping up pre launch HYPE
  2. S

    [USA] Thorsan 8.0 (Mid-Rates) RL-Map Server, Online NOW!

    Digging up my otland acc to say this server looks very promising. I enjoyed 8.0 and 8.1 tibia the most in my career, so this should be a lot of fun :)
  3. S

    [8.6] OTServ 0.6.4 STABLE

    (weird, can't find an edit button) Nevermind, I'm an idiot and found the file I was looking for. For those curious, it's under /src/src named schema.mysql (schema.pgsql for the post-gre file).
  4. S

    [8.6] OTServ 0.6.4 STABLE

    I noticed there isn't a schema folder with a mysql file to upload. Does this version not support mysql? If it does, where can I find the file for the initial upload?
  5. S

    [8.54] RoXoR Server v8.54 (1337ms)

    Anyone able rehost this?
  6. S

    [Sources Edit] Player dies

    ^ Saying "doesn't work" is completely useless. EXPLAIN the issue!
  7. S

    Strange symbols in database

    Forcing a column in SQL to be of a certain type garuntees that data not of the column's type will be rejected by SQL. When the server tries to insert the garbage symbols, SQL rejects it and sends back an error. What happens next is up to the server. Most likely it throws an error, if not then...
  8. S

    Strange symbols in database

    Since you're only storing numbers in the "value" column, you can change its databype to int instead of varchar. This will prevent the nonsense symbols from being successfully ineserted in the db, but depending on your server, it might flood you with errors when it attempts to insert the symbols...
  9. S

    Strange symbols in database

    Open up a SQL console and run the following without quotes: "DESCRIBE player_storage;" Post the results here.
  10. S

    [USA] Tibia4Ever 8.6

    Bows and crossbows are melee range LOL
  11. S

    [SWEDEN] Coldwinter | 10.1 revamped to ~7.6 with NIGHTMARE SERVERSAVE [REALMAP]

    I'm loving this server so far. Every bug that has been reported has been fixed within the hour. Excellent support :)
  12. S

    Lua [TFS] Binding onPrepareDeath to Creatures

    After some searching around, I found that onPrepareDeath and onDeath events can both be bound to creatures, but only by going into each individual creature's xml file and adding a script. Is there a way to globally add either event to every creature rather than having to manually edit several...
  13. S

    [USA] Farendar - CUSTOM CLIENT

    I just want to point out that what Maou is saying absolute garbage and a pathetic attempt at deterring players from joining. In short, he and his friend that he mentioned both attacked a player that was manasitting. Attacked as in both took white skull on this person. Well, that manasitting...
  14. S

    Lua Gesior -> Gesior = Can't login with old accounts?

    Please keep in mind Sha1 and md5 are hashing methods, NOT encryption. Encrypted data can be decrypted(it's two-way). Hashing is one-way. When setup properly, server owners shouldn't even get to see user passwords(because they don't need the user's password); they just get a 160 or 120bit...
  15. S

    Solved Script blessing

    So you want the player to only pay one time, then after that other blessings are free? The easiest way to do that is using player storage. I'm currently unable to test this code, so take it as principle only: function onUse(cid, item, fromPosition, itemEx, toPosition) local money = 10000 --...
  16. S

    Solved Script blessing

    If I'm understsanding you correctly, you're wanting to check to see if a player has a blessing before they spend their money, correct? If so, just add an if() that checks whether the player has the blessing BEFORE you call doPlayerAddBlessing(cid, bless)
  17. S

    Lua [TFS 0.3.6] Step-In onMove event?

    Ah, I was unaware of that. Thank you so much! Also it should be noted that the code I had for onPrepareDeath was incomplete. It seems onPrepareDeath must return true for the character to *actually* die, otherwise the function will just be called indefinitely. Edit: Out of curiousity, where did...
  18. S

    Can't delete rows in SQLite Expert, foreign key constraint failed?

    The error is pretty straightforward. You have a foreign key preventing you from deleting the row. The constraint will need to be lifted before the row can be deleted. This might be useful to you in finding the constraint(s).
Back
Top