• 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

    Existem BR's?

    br é uma praga, todo lugar sempre tem um incomodando, rsrsrsrs.
  2. Critico

    TalkAction Add Items Depot from player [Online/Offline]

    Description: is a command to send items directly to the depot of the player, even though he is online or offline! Tested: in Sqlite version, do not know if it supports version Mysql / Sql additemdepot.lua function doPlayerAddDepotItems(pid, item, count) --By magus and edited by vodkart...
  3. Critico

    TalkAction New DeathList!

    names fixed u can say: !deathlist Critico or CRITICO or critico, etc...
  4. Critico

    Set x item on global loot

    function onKill(cid, target, lastHit) local item,chance = 2160,50 if isMonster(target) and chance > math.random(1, 100) then doPlayerAddItem(cid,item,1) end return true end
  5. Critico

    NPC Rent Mounts!

    bump
  6. Critico

    Action Item Reward Premium

    function onUse(cid, item, fromPosition, itemEx, toPosition) local days = 15 return doPlayerSendTextMessage(cid, "You Have A "..days.." Days Premium!") and doPlayerAddPremiumDays(cid, days <= 0 and 1 or days) end
  7. Critico

    [Kingdom Age] Trailer Release

    Excelente projeto, vou aguardar ociosamente para dar uma boa jogada em um servidor tão clássico e inovador como é o KA.
  8. Critico

    Lever vocation x time

    getGlobalStorageValue(cid setGlobalStorageValue(cid wtf? this script does not work
  9. Critico

    GlobalEvent House Clean

    Description: Is to delete houses from inactive players, meaning that the player does not log in "X" days lose your house! houseclean.lua function onTimer() local days = 15*24*60*60 doSaveServer() local query = db.getResult("SELECT `owner`,`id` FROM `houses`;") if (query:getID() ~= -1)...
  10. Critico

    TalkAction Ban System 9.6+ [Only Lua]

    for MySql Server use this Query: CREATE TABLE ban_table ( id INT NOT NULL AUTO_INCREMENT, account INTEGER NOT NULL, added INTEGER NOT NULL, expires INTEGER NOT NULL, admin_id INTEGER NOT NULL DEFAULT 0, comment TEXT NOT NULL...
  11. Critico

    NPC Mount Seller X Items.

    remove this function from the topic: function doPlayerGiveItem(cid, itemid, amount, subType) local item = 0 if(isItemStackable(itemid)) then item = doCreateItemEx(itemid, amount) if(doPlayerAddItemEx(cid, item, true) ~= RETURNVALUE_NOERROR) then return false end else for i = 1...
  12. Critico

    TalkAction how much exp for next level

    function onSay(cid, words, param) return doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED) and doPlayerPopupFYI(cid, "you Need "..getExperienceForLevel(getPlayerLevel(cid)).." for Next Lvl") end
  13. Critico

    TalkAction Ban System 9.6+ [Only Lua]

    table for Sqlite and MySql
  14. Critico

    CreatureEvent Extra Area Experience

    Tested: 8.6+ Is a code you put an area, and that area give more exp if the player kill a monster... can be used for VIP area. data/creaturescripts/scripts area_exp.lua function onKill(cid, target) local exp_area ={ {from = {x=1014,y=1016,z=7},to = {x=1017,y=1019,z=7}, exp =...
  15. Critico

    TalkAction Ban System 9.6+ [Only Lua]

    page to gesior not is in php?
Back
Top