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

    /ban command with reason & who that banned him.

    function onSay(cid, words, param) local t = string.explode(string.lower(param), ",") if not t[1] then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.") return true end local player = getPlayerByNameWildcard(t[1]) if(not...
  2. Critico

    Lua skull amulet

    red = skull 4 black = skull 5 getPlayerSkullType(cid) >= 4
  3. Critico

    [MOD] Skull system [LUA] [WAR SERVER]

    worked great job rep+
  4. Critico

    [Mod] Auto Loot

    bump
  5. Critico

    Protection spell

    use onCast or onCombat '-'
  6. Critico

    [Mod] Auto Loot

    pokemon server?
  7. Critico

    [Mod] Auto Loot

    Server version, TFS? 8.54?
  8. Critico

    [Mod] Auto Loot

    why you not like MODS?
  9. Critico

    [Mod] Auto Loot

    update! bump
  10. Critico

    [Mod] Auto Loot

    just block some monster or block some items from auto loot
  11. Critico

    [Mod] Auto Loot

    Credits: MatheusMkalo & Vodkart tested version: 8.6 and 9.1 Auto Loot.xml <?xml version="1.0" encoding="ISO-8859-1"?> <mod name="Loot System" version="1.0" author="Vodkart And Mkalo" contact="none.com" enabled="yes"> <config name="Loot_func"><![CDATA[ info = {...
  12. Critico

    TalkAction Deleteing Players Talkaction

    DELETE FROM `X`.`players` UPDATE `players`" .. p[1] .. "' WHERE players = '" .. p[1] .. "' wtf?
  13. Critico

    Lua Monster Lever Script, doRemoveCreature.

    try local t = { [{1, 14}] = "Rotworm", [{15, 39}] = "Dragon", [{40, 79}] = "Dragon Lord", [{80, 179}] = "Demon", [{180, 3000}] = "Bog Spider" } function onUse(cid, item, fromPosition, itemEx, toPosition) local fromPos =...
  14. Critico

    Rewards for online record

    'amount' is if the item is to stacktable exemple 2160, 2148 etc...
  15. Critico

    Rewards for online record

    change doPlayerAddMoney(cid, 10000) to doPlayerAddItem(cid, ITEMID, amount)
  16. Critico

    Rewards for online record

    function onRecord(current, old, cid) db.executeQuery("INSERT INTO `server_record` (`record`, `world_id`, `timestamp`) VALUES (" .. current .. ", " .. getConfigValue('worldId') .. ", " .. os.time() .. ");") addEvent(doBroadcastMessage, 150, "New record: " .. current .. " players are logged...
  17. Critico

    Lua Anyone know how to put this script to only 30 top level online win the prize?

    function onThink(cid, interval, lastExecution) local config = { hours = 16, items = {{2534,1}, {2363,1}, {5785,1}, {2363,1}, {8900,1}, {2520,1}, {2519,1}, {2195,1}, {10523,1}, {10523,1}, {7892,1}, {2114,1}, {10515,1}, {2466,1}, {2491,1}, {2173,1}, {5957,1}, {5957,1}, {5957,1}, {5957,1}...
  18. Critico

    NPC Re-edit.

    travel for vocation? exemple: knight = {x = 1, y = 1, z = 1} druid = {x = 2, y = 2, z = 2} paladin = {x = 3, y = 3, z = 3} etc?
  19. Critico

    NPC that sells premium days / items for Premium Points?

    add in lib/function function getAccountPoints(cid) local res = db.getResult('select `premium_points` from accounts where name = \''..getPlayerAccount(cid)..'\'') return res:getDataInt("premium_points") < 0 and 0 or res:getDataInt("premium_points") end function doAccountRemovePoints(cid...
Back
Top