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

    AAC myAcc top quests, top achievements

    Hello, I am looking for someone who will help me transfer the script from Gęsior to MyAcc. 1. Look achievements in characters 2. Look VIP in characters 3. Top Achievements 4. Top Quests 1 look achievements in characters: $osiagniecia_enabled = $config['characters']['osiagniecia'] &&...
  2. K

    Lua local print nil value

    thx you and Kubernik!
  3. K

    MyAAC v0.8.21

    Hello What about scripts? Top Achievements, Top Quests? I really like the admin panel, but I don't know what the scripts situation is like. And I have a dilemma myacc or gesior
  4. K

    Lua local print nil value

    Hi, I have such a script on manarune: local exhaust = Condition(CONDITION_EXHAUST_HEAL) exhaust:setParameter(CONDITION_PARAM_TICKS, (configManager.getNumber(configKeys.EX_ACTIONS_DELAY_INTERVAL) - 100)) -- 1000 - 100 due to exact condition timing. -100 doesn't hurt us, and players don't have...
  5. K

    Lua get storage MySQL query

    local function checkNameSurvivalHigscores() local queryResult = db.storeQuery("SELECT * FROM `player_storage` s INNER JOIN players p ON `s`.`player_id` = `p`.`id` WHERE `key`= '7777' ORDER BY `value` DESC LIMIT 1;") if queryResult then local name = result.getString(queryResult...
  6. K

    Lua get storage MySQL query

    omg I was convinced that there is a function that will return the name of the player by ID and I can't find it is there such a function?
  7. K

    Lua get storage MySQL query

    How do I get the player_id value now? local orderQuery = db.storeQuery("SELECT `player_id` FROM `player_storage` WHERE `key`= '17010' ORDER BY `value` DESC LIMIT 1;") print(orderQuery) returns me the value 1
  8. K

    Lua get storage MySQL query

    hello, help me write a mysql query -> players_storage which will return the player_id of one player with the largest storage 7777 value?
  9. K

    VPS wybór

    Siemasz poleci ktoś VPS'a pod mały serwer ok. 30 graczy / test serwer? Nigdy tego nie ogarniałem i jestem w tym zielony a chciałbym się pobawić conieco ;)
  10. K

    Lua resetting storage after 24 hours

    local function getExpForLevel(level) level = level - 1 return ((50 * level * level * level) - (150 * level * level) + (400 * level)) / 3 end local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local talkState = {} function onCreatureAppear(cid)...
  11. K

    Lua math.random teleport

    okay now i get it! Thank you very much ;)
  12. K

    Lua math.random teleport

    I don't understand
  13. K

    RevScripts ❤ ℱ𝓇𝑒𝑒 𝒮𝒸𝓇𝒾𝓅𝓉𝒾𝓃𝑔 𝒮𝑒𝓇𝓋𝒾𝒸𝑒 𝒯ℱ𝒮 𝟷.𝟻+ ❤

    TFS 1.5 doSendDistanceShoot - Just like in the video. From the x, y, z position to the x, y, z position, teleports the player when hit. doSendDistanceShoot must be every 1 sqm, for the effect to be slow
  14. K

    Lua math.random teleport

    He wants each player to teleport to a different position. Now it happens that 2 players teleport to the same place.
  15. K

    Lua math.random teleport

    Refresh
  16. K

    Lua math.random teleport

    local config = { playerPositions = { Position(736, 929, 8), Position(737, 929, 8), Position(738, 929, 8) }, newPositions = { Position(748, 933, 8), Position(750, 933, 8), Position(732, 929, 8) } } function onUse(player, item...
  17. K

    Lua define function

    You can guide me on how to define a doCreateMonster that was used in the onKill function so that I can define this function in onLogout? function onKill(player, target) a = doCreateMonster(xxxx) return true end function onLogout(player) doRemoveCreature(a) return true end local...
  18. K

    Lua Script repeat every second

    https://pastebin.com/raw/3WaE7xtW
  19. K

    Lua Script repeat every second

    addEvent(function() if player:getStorageValue(76767) == Number then player:getPosition():sendMagicEffect(CONST_ME_TELEPORT) end end, 1000) how to make the script repeat every second until the if condition is met?
Back
Top