• 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

    Lua Random Item Stats With ML Attributes

    Hello, i use this system: https://otland.net/threads/mod-random-item-stats.130295/ how to put for this system drop items with ML?? someone has already edited this system? My Serve is 8.6 tfs
  2. Critico

    [Mod] Auto Loot

    use version 9.6+ http://pastebin.com/gxr52zp8
  3. Critico

    TalkAction New DeathList!

    only delete if the time of death is greater than 7 days and is onTimer() -
  4. Critico

    TalkAction New DeathList!

    DeathListclean.lua function onTimer() local days = 7*24*60*60 -- 7 days local qry = db.getResult("SELECT `player_id`, `date` FROM `death_list` ORDER BY `date` DESC;") if(qry:getID() ~= -1) then repeat local death_time, id_player = tonumber(qry:getDataInt("date")), qry:getDataInt("player_id") if...
  5. Critico

    TalkAction New DeathList!

    hmm right... I will make a globalevent that deletes death after 7 or 15 days on db
  6. Critico

    TalkAction New DeathList!

    1° Open Sqlite program 2° Select the database on your server , the file is this ".s3db " , for example "forgottenserver.s3db" 3° the top of the program has the tab "Tools" , click on it and select "Open SQL query editor " or ( ALT + E ) if desired 4° a window will open , You put: CREATE TABLE...
  7. Critico

    TalkAction Add Items Depot from player [Online/Offline]

    try now, script edited... some error??
  8. Critico

    NPC Marriage system 8.6+ [Fixed]

    this emoticon: :eek: bug this script ...
  9. Critico

    Problem in the function "isInArray"

    function isInArray(array, value, caseSensitive) if(caseSensitive == nil or caseSensitive == false) and type(value) == "string" then local lowerValue = value:lower() for _, _value in ipairs(array) do if type(_value) == "string" and lowerValue == _value:lower() then return true end end else for _...
  10. Critico

    Broadcast rare lottey win

    function onUse(cid, item, frompos, item2, topos) local prize, rare = {2157,2390,2153,2154,2155,10521,2156}, {2157,2390,10521} local actionid = 1337 if item.actionid == actionid and doPlayerRemoveItem(cid, 2157, 1) then local randomChance = prize[math.random(1, #prize)] doPlayerAddItem(cid...
  11. Critico

    Existem BR's?

    ok
  12. Critico

    db.executeQuery? - Mystic Spirit 0.2.15 (9.86)

    local pid = getPlayerGUID(cid) doRemoveCreature(cid) db.executeQuery("UPDATE `player_skills` SET `value` = 30 WHERE `player_id` = "..pid)
  13. Critico

    [Mod] Auto Loot

    Mods Folder
  14. Critico

    MoveEvent Banana Skin (Servers RPG or War)

    good work, remove the item when stepping coloca para que o item suma quando pisarem nele... doRemoveItem(item.uid)
  15. Critico

    NPC Rent Mounts!

    emoticon has buged the script... this emoticon> :eek:
  16. Critico

    NPC Sell Items for Premium Points

    http://otland.net/threads/npc-that-sells-premium-days-items-for-premium-points.164082/
  17. Critico

    !frags

    function onSay(cid, words, param) return doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE,"You Have "..getPlayerFrags(cid).." Frags!") end
  18. Critico

    deathlist

    http://otland.net/threads/new-deathlist.157881/
  19. Critico

    Lua Clean Kills and Death

    db.executeQuery("DELETE FROM player_deaths;") db.executeQuery("DELETE FROM player_killers;")
Back
Top