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

    TFS 1.X+ GetAttackSpeed Problem

    Hello, please help me how to correctly read the attackspeed of a weapon? yes, yes I have it added to src. error: attempt to perform artihmetic on a nil value TFS 1.2 - 8.0 code: local attrkeys = { ['charges'] = ITEM_ATTRIBUTE_CHARGES, ['time'] = ITEM_ATTRIBUTE_DURATION, ['atk'] =...
  2. Svira

    [TFS 1.x] KD ratio

    hmm...? reupload?
  3. Svira

    RevScripts Addon Bonuses Conditions

    player:setParameter -> player:addCondition +some more fix local BONUSES = CreatureEvent("BONUSADDONS") local maleOutfits = {128, 129, 130, 131, 132, 133, 134, 143, 144, 145, 146, 151, 152, 153, 154, 251, 268, 273, 278, 289, 325, 328, 335, 367, 430, 432, 463, 465, 472, 512, 516, 541, 574, 577...
  4. Svira

    What "killed" RL Tibia for YOU?

    I played almost from the beginning, I gave up when they added hotkeys, at this point the skill in this game stopped counting... :<
  5. Svira

    [13.16] Wheel, Bosstiary etc [Canary2]

    opentibiabr/canary staff + svira & bravo
  6. Svira

    [13.16] Wheel, Bosstiary etc [Canary2]

    Hello! Forge Exaltation Wheel of Destiny Bosstiary Boss Slot Hazard System Hunting Task System Team Finder (does not automatically group, but you can search for groups to kill bosses) Sound Spells and Monsters Map UPDATED. Have Fun :)
  7. Svira

    Breakchance and MSG(player:say)?

    I see that it's more of a challenge, I took a shortcut and using the remove function I calculate the odds of disappearing. now i have a guess how in the following code to mark item to be removed from hand, left or right? local removeChance = math.random(1, 100) if removeChance <= 9 then...
  8. Svira

    Breakchance and MSG(player:say)?

    Hello everyone very warmly! Question to the community, how do I set the message to be sent when the brackchance function is called? I am using tfs1.5 and canary, please help me, my result was to add script/weapons to the registry: slingShot:breakChance(9, function(player) player:say("Your...
  9. Svira

    RewardChest dont save items in database

    To save the items in the reward box when the player logs out, you need to add a database insert/update query that saves the items in the reward box to the database. You can add this query to the onLogout function or another appropriate function that is called when the player logs out. Here's an...
  10. Svira

    AAC ZnoteAAC highscore page, sorting

    PayPal: [email protected] :) To sort the highscore page according to vocation, then reborn, you will need to modify the function fetchAllScores() in the engine/functions/highscore.php file. Here is an updated version of fetchAllScores() that should sort the highscore page as required: function...
  11. Svira

    attackSpeed enabled = HIGH CPU USAGE

    Several techniques can be used to optimize this code and reduce CPU usage: Use the modulo (%) operator to avoid calling OTSYS_TIME() every cycle of the loop. The value returned by this function changes too quickly to be used as the basis for a continuous countdown. Checking if we need to call...
  12. Svira

    Super Transformer Ring TFS 1.2

    Most likely, the problem lies in trying to obtain the index of nil. This error occurs when you try to use the indexing operator ("[]") or dot operator (".") to obtain a value from an object that is equal to nil. To exclude this error, you need to check whether the value on which you perform the...
  13. Svira

    Lua Dreamer Challenge Pillows!

    Try this: local riddleTeleport = MoveEvent() local destination = Position(1271, 749, 14) local topLeftPosition = Position(1322, 808, 9) local pillowPositions = { {itemid = 1686, center = topLeftPosition + Position(2, 2, 0)}, {itemid = 1687, center = topLeftPosition + Position(2, 5, 0)}...
  14. Svira

    Lua [TFS 1.2] Upgrade Item System - Add magic level?

    To add Magic Level as an upgrade to this script, you need to modify the following parts: Add "magicLevel" to the conf table as a new upgrade attribute: conf["upgrade"] = { attack = 1, defense = 1, extraDefense = 1, armor = 1, hitChance = 1, magicLevel = 1 -- add this line } Add a new line...
  15. Svira

    IP Logger PHP for MyAcc

    What is this? add in index: <?php $servername = "localhost"; $username = "nazwa_uzytkownika"; $password = "haslo_uzytkownika"; $dbname = "ots"; // Stwórz połączenie z bazą danych $conn = new mysqli($servername, $username, $password, $dbname); // Sprawdź, czy udało się połączyć z bazą danych...
  16. Svira

    Help in locating the bug/error from the console

    good idea but where to put the debugger? ##EDIT FULL CONSOLE LOG Full log, I don't see the root of the problem, do you?
  17. Svira

    Help in locating the bug/error from the console

    The problem is to search the sources because almost every file contains a warning spd
Back
Top