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

    Lua Training monks that heals

    Yea.. Oh but it is very big arena, so script can lagg server :<
  2. O

    Lua Training monks that heals

    Nooo... it is not what I am searching for :S
  3. O

    Lua Training monks that heals

    Buw how "healing" can be done?
  4. O

    Lua Training monks that heals

    will shielding grow then?
  5. O

    Lua Training monks that heals

    Hello, how can be solved problem that training monks kill people? They should heal sometimes... but how should it be done?
  6. O

    Lua "Calculating weight for more than 100 items!"

    Hello, sometimes I have this error in console: [Warning] getItemWeightById Calculating weight for more than 100 items! Code that returns this error - 050-function.lua: function getItemWeightById(itemid, count, precision) local item, count, precision = getItemInfo(itemid), count or 1...
  7. O

    After changing direction character stops on first sqm for 0.5s

    Hello, does anyone know how to solve the problem described in the topic?
  8. O

    [Game chat] How to made functionality involved with writing in orange by support in game chat?

    I have TFS 0.4, I am certain that it is not involved with changing flag in database... In TFS 0.4 support team do not write in orange (game chat) by default and I want to change it ;)
  9. O

    [Game chat] How to made functionality involved with writing in orange by support in game chat?

    Hello, Support (players with group ID >= 2) should write in orange in game chat. How can it be made?
  10. O

    Lua How to fetch varchar from database?

    Hello, I am trying to fetch varchar from database: local getFlag = db.getResult("SELECT * FROM `accounts` WHERE `id` = " .. getPlayerGUID(cid) .. ";") if (getFlag:getDataString("name") == "12311") then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'Hello Master!')...
  11. O

    Linux [PHP] Question marks "�" instead of spanish letter

    Hello, I have weird problem with characters on the site, in database I have spanish letters and when I fetch it from DB than i see question mark "�" instead of letter. In layout.php I have: <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> so there is UTF8, I guess file should...
  12. O

    Is there any LUA function which checks if the player is active or inactive?

    Thanks you, but ss there any working script for TFS 0.4/0.3.7?
  13. O

    Is there any LUA function which checks if the player is active or inactive?

    Hello! If player exits on no logout tile than he is sill in game. I want to check all players - when player is active (normally playing) or inactive (exit on no logout tile). Hmm... Is there any function which can check it? for _, pid in ipairs(getPlayersOnline()) do [ check if pid is active...
  14. O

    Lua How to prevent put the same item on EQ?

    bump...
  15. O

    Lua How to prevent put the same item on EQ?

    Ah... so how it can be solved?
  16. O

    Lua How to prevent put the same item on EQ?

    Hmm, trying to do it in this way: local storage = 23006 local exhausttime = 5 function onEquip(cid, item, slot) print("1") if getCreatureStorage(cid,15000) == 1 then print("2") doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have already weared this...
  17. O

    Lua How to prevent put the same item on EQ?

    While moving item to slot with the same item it prints: itemWeared - 0 item.itemid - 2342 and both iteams goes to backpack...
Back
Top