• 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. Sir Islam

    Lua Help BP give extra CAP

    so its work lol
  2. Sir Islam

    [TFS 1.0] namelock/ban reason

    have fun https://otland.net/threads/namelock-tfs-1-x.235156/
  3. Sir Islam

    TalkAction /Namelock tfs 1.x

    have fun for all :D Request: [TFS 1.0] namelock/ban reason talkactions.xml <talkaction words="/namelock" separator=" " script="namelock.lua" /> namelock.lua function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name =...
  4. Sir Islam

    [TFS 1.x] Free Scripting and Support

    may be this want source edit :)
  5. Sir Islam

    [TFS 1.x] Free Scripting and Support

    https://otland.net/threads/command-cliport-tfs-1-0.216672/
  6. Sir Islam

    Lua Error while loading actions

    :D 3349 lines omg really you joke wtf about this script
  7. Sir Islam

    functions

    test this http://pastebin.com/zRpjpD6y
  8. Sir Islam

    functions

    have fun :) function Outfits(cid) local completed = {} local Outfits = { 136,128,137,129,138,130,139,131,140,132,141,133,142, 134,147,143,148,144,149,145,150,146,155,151,156,152, 157,153,158,154,252,251,269,268,270,273,279,278,288...
  9. Sir Islam

    Lua Help BP give extra CAP

    function getPlayerCap(cid) local query = db.getResult("SELECT `cap` FROM `players` WHERE `id` = " .. getPlayerGUID(cid)) if query:getID() ~= -1 then return tonumber(query:getDataString("cap")) end return 0 end local capacidade = 1000 -- aqui coloca quanto que vai almentar function onEquip(cid...
  10. Sir Islam

    Lua How i set pk player

    function onStepIn(cid, item, position, fromPosition) if isPlayer(cid) then doCreatureSetSkullType(cid,3) end end function onCombat(cid, target) if isPlayer(cid) and isMonster(target) then if getCreatureName(target) == "Archangel" then doCreatureSetSkullType(cid,3) end end...
  11. Sir Islam

    points

    function doAddPoints(cid, points) db.executeQuery("UPDATE `accounts` SET `premium_points` = `premium_points` + " .. points .. " WHERE `id` = " .. getPlayerAccountId(cid) .. ";") end local config = { {level = 250, storage = 89964, reward = 2160, howmanyreward = 5}, {level = 300, storage...
  12. Sir Islam

    Lua Help BP give extra CAP

    function getPlayerCap(cid) local query = db.getResult("SELECT `cap` FROM `players` WHERE `id` = " .. getPlayerGUID(cid)) if query:getID() ~= -1 then return tonumber(query:getDataString("cap")) end return 0 end local capacidade = 1000 -- aqui coloca quanto que vai almentar function onEquip(cid...
  13. Sir Islam

    I cant look at other players ??

    show this script
  14. Sir Islam

    Lua Help BP give extra CAP

    can do this with onThink script
  15. Sir Islam

    Lua How i set pk player

    you can do this with statschange
  16. Sir Islam

    Lua Help BP give extra CAP

    local capacidade = 1000 -- aqui coloca quanto que vai almentar function onEquip(cid, item, slot) doPlayerSetMaxCapacity(cid, (getPlayerCap(cid) + capacidade)) return true end function onDeEquip(cid, item, slot) local cap = getPlayerCap(cid) - 1000 doPlayerSetMaxCapacity(cid, cap)...
  17. Sir Islam

    Compiling changes for 10.80

    how you know just test it :)
  18. Sir Islam

    Pheonixia v.2 problem Help me out

    don't care about it :)
  19. Sir Islam

    Solved Addons level not working

    function onAdvance(cid, skill, oldlevel, newLevel) local outfits = { [135] = {outfit = getPlayerSex(cid) == 0 and 136 or 128, storage = 10136}, [140] = {outfit = getPlayerSex(cid) == 0 and 137 or 129, storage = 10137}, [145] = {outfit = getPlayerSex(cid) == 0 and 138 or 130, storage =...
  20. Sir Islam

    Solved Addons level not working

    :/ local outfits = { [135] = {outfit = getPlayerSex(cid) == 0 and 136 or 128, storage = 10136}, [140] = {outfit = getPlayerSex(cid) == 0 and 137 or 129, storage = 10137}, [145] = {outfit = getPlayerSex(cid) == 0 and 138 or 130, storage = 10138}, [150] = {outfit = getPlayerSex(cid) == 0...
Back
Top