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

    AAC Sell character page

    that error you posted is because you have a $ at the started of a function. This sigil is used for variables, you aren't using a variable you are using a function and need to replace every instance of $make_content_header to remove the sigil ($)
  2. Leesne

    Action Advanced quest system for tfs 1.3

    Haven't tested it but i like the amount of features that is included in this and how clean the code is to read.
  3. Leesne

    [MyAAC][Plugin] Gesior Shop System

    Then use the scripts/globalevents folder, find a globalevent that works on a timer and edit it. https://github.com/opentibiabr/otservbr-global/tree/develop/data/scripts/globalevents
  4. Leesne

    [MyAAC][Plugin] Gesior Shop System

    Then its not 1.3 TFS :p also in otbr they use revscripts globalevents. globalevents being the key word he should be looking for :p
  5. Leesne

    Lua [TFS 1.3] Upgrade System - quest reward

    local config ={ storagevalue = 9070, giveitem = 2495, } function onUse(player, item, fromPosition, target, toPosition, isHotkey) if item.itemid == 1740 then local queststatus = player:getStorageValue(config.storagevalue) if queststatus == -1 then local...
  6. Leesne

    [MyAAC][Plugin] Gesior Shop System

    Did you even look in the folders provided and on your server? The globalevent is with the plugin. https://github.com/slawkens/myaac-gesior-shop-system/blob/master/gesior-shop-system.lua and the globalevents folder https://github.com/otland/forgottenserver/tree/master/data/globalevents
  7. Leesne

    MyAAC v0.8.21

    table.dataTable tbody tr.. jquery datatables~ file creature files also have been updated in the dev build and i removed the datatable within it and gives you the preview option as well. https://github.com/slawkens/myaac/commit/8e6bc73ca6 maybe try piece it together from there.
  8. Leesne

    MyAAC v0.8.21

    Are you using the latest dev version? 1.3 schema CREATE TABLE IF NOT EXISTS `account_bans` ( `account_id` int NOT NULL, `reason` varchar(255) NOT NULL, `banned_at` bigint NOT NULL, `expires_at` bigint NOT NULL, `banned_by` int NOT NULL, PRIMARY KEY (`account_id`), FOREIGN KEY...
  9. Leesne

    [8.6] [TFS1.3] Alkurius Global & Coustom

    its saying it cannot connect to your database. Is it a live server? did you have root set with no password? check your database connection and ensure mysql server is running.
  10. Leesne

    [8.6] [TFS1.3] Alkurius Global & Coustom

    function trim(s) return (s:gsub("^%s*(.-)%s*$", "%1")) end use this then players don't need to worry about the space. 128.0.0.1 ip address? you sure this is correct?
  11. Leesne

    MyAAC v0.8.21

    I have coded one for a server, they have said I can release it. I'm in the process of converting it and updating it so you can modify the wars from web portal and will continue after finishing some paid work. I just have very little time at the moment.
  12. Leesne

    MyAAC v0.8.21

    what version are you using? The error says it cannot find the items class. "require LIBS . 'items.php';" Have you edited the reload monsters page? This was updated in the most recent dev version where this was moved to dataloader.php
  13. Leesne

    MyAAC v0.8.21

    Do you have your data folder setup with items.xml. Creatures page also refreshes the items as it uses it for the loot tables.
  14. Leesne

    Lua "Chill Out - exevo infir frigo hur"

    local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_ICEAREA) combat:setArea(createCombatArea(AREA_WAVE4, AREADIAGONAL_WAVE4)) function onGetFormulaValues(player, level, maglevel) local min = (level / 5) +...
  15. Leesne

    MyAAC v0.8.21

    Those changes have been submitted under the newest develop build. @ferpaloko
  16. Leesne

    PHP MyAAC Table color source (SOLVED)

    What template are you using? In notepad++ or similar editor use the find in files features
  17. Leesne

    [MyAAC][Plugin][Template] Tibiaold

    https://github.com/slawkens/myaac-plugins
  18. Leesne

    [MyAAC][Plugin] Gesior Shop System

    The terminal on your server. if you are hosting it on a linux based system.
  19. Leesne

    MyAAC v0.8.21

    have you checked in the config local file as well?
  20. Leesne

    TFS 1.2 Quick way to delete items from player houses

    Tile_store is every item on the map that isn't in default map file and gets saved at server shutdown and loaded. Shutdown server, run command above. then restart server.
Back
Top