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

    C++ Team hunt for 0.4 TFS

    Lua - Is possible check sharing exp
  2. buchaLL

    TFS 0.X item give mana per second if we have storage

    function onThink(cid, interval) local time = 1 local item_id = ? local slot = ? if last_interval == nil then last_interval = os.clock() end if getPlayerStorageValue(cid, 12346) == 1 and getPlayerSlotItem(cid, slot).itemid == item_id then if isPlayer(cid) == true then local mpheal =...
  3. buchaLL

    TFS 0.X item give mana per second if we have storage

    movements, in the script Equip setPlayerStorageValue(cid, 12346, 1) DeEquip setPlayerStorageValue(cid, 12346, -1)
  4. buchaLL

    TFS 0.X item give mana per second if we have storage

    creaturescripts function onThink(cid, interval) local time = 1 if last_interval == nil then last_interval = os.clock() end if getPlayerStorageValue(cid, 12346) == 1 then if isPlayer(cid) == true then local mpheal = getPlayerMaxMana(cid) * (15.0 / 100) -- 15.0 percent mana if...
  5. buchaLL

    Pyra

    Me :)
  6. buchaLL

    FOMO - Printer

    It's good to see you here! :D
  7. buchaLL

    TFS 0.X Offer expire auction system

    function getPlayerNameByGUID(guid) local name = 0 local resultId = db.getResult("SELECT `name` FROM `players` WHERE `id` = " .. guid) if(resultId:getID() ~= -1) then name = resultId.getDataString(resultId, "name") resultId:free() end return name end...
  8. buchaLL

    TFS 0.X Offer expire auction system

    Remove: result:free()
  9. buchaLL

    TFS 0.X Offer expire auction system

    function getPlayerNameByGUID(guid) local name = 0 local resultId = db.getResult("SELECT `name` FROM `players` WHERE `id` = " .. guid) if(resultId:getID() ~= -1) then name = resultId.getDataString(resultId, "name") resultId:free() end return name end...
  10. buchaLL

    TFS 0.X Offer expire auction system

    function getPlayerNameByGUID(guid) local name = 0 local resultId = db.getResult("SELECT `name` FROM `players` WHERE `id` = " .. guid) if(resultId:getID() ~= -1) then name = resultId.getDataString(resultId, "name") resultId:free() end return name end...
  11. buchaLL

    Lua Auto recharge assassin star on LUA SCRIPT

    local itemID = 7366 local function refillAssassinStars(cid, ammo_count) if isPlayer(cid) then doPlayerRemoveItem(cid, itemID, ammo_count) doPlayerAddItem(cid, itemID, ammo_count) end end local function autoRefillAssassinStars(cid) local hand_to_check = 0 local...
  12. buchaLL

    Stamina Modify Problem

    All LUA FUNCTIONS getPlayerRates(cid) doPlayerSetExperienceRate = 1.0 || V doPlayerSetRate(cid, SKILL__LEVEL, 1)
  13. buchaLL

    new spell for druid 8.6

    Ok. What error??
  14. buchaLL

    new spell for druid 8.6

    Spell - Chauring Frigo
  15. buchaLL

    about bless icon

    Give your version of tfs at the first. condition.cpp-.h is in your source folder.
  16. buchaLL

    about bless icon

    Lua - Condition tfs 0.4
  17. buchaLL

    Teleport players in a specific area

    lib function isCreatureInArea(fromPos, toPos) local t = {} for z=fromPos.z, toPos.z do for y=fromPos.y, toPos.y do for x=fromPos.x, toPos.x do local v = getTopCreature({x=x,y=y,z=z}) if v.itemid == 1 and table.find({1,2,3}, v.type) then...
  18. buchaLL

    [FRANCE] KARAMY-WAR 8.60 27.10, 19:00 | LEGENDARY WAR |

    Recomended! Will be played! :p
  19. buchaLL

    C++ Colors

    Oh please! Thanks!
  20. buchaLL

    C++ Colors

    Where can I check these colors? I would like to add my own. const.h enum Color_t { COLOR_BLACK = 0, COLOR_BLUE = 5, COLOR_GREEN = 18, COLOR_TEAL = 35, COLOR_LIGHTGREEN = 66, COLOR_DARKBROWN = 78, COLOR_LIGHTBLUE = 89...
Back
Top