• 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

    TalkAction Ban System 9.6+ [Only Lua]

    Tested on server's 9.6+ OBS: open talkaction.xml and remove these commands(if have): /ban /unban /baninfo to avoid conflicts ----------------------- installation ------------------------- execute this query in your db CREATE TABLE ban_table ( id INTEGER NOT...
  2. Critico

    Double exp area

    use onKill function onKill(cid, target) local from,to = {x=160, y=54, z=7},{x=165, y=54, z=7} if isPlayer(cid) and isInRange(getCreaturePosition(cid), from, to) and isMonter(target) then local exp = getExperienceStage(getPlayerLevel(cid)...
  3. Critico

    NPC Marriage system 8.6+ [Fixed]

    "no such table: marriage_system" u need execute this query in your db: CREATE TABLE marriage_system ( id INTEGER NOT NULL, player_id INTEGER NOT NULL, partner VARCHAR( 255 ) NOT...
  4. Critico

    [System] Weapon Hit Rank!

    bump
  5. Critico

    lua function ?!

    use onStatsChange(cid, attacker, type, combat, value)
  6. Critico

    Magic wall help :)

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497) function onCastSpell(cid, var) function MagicWallTime(pos, delay) doSendAnimatedText(pos, delay, 145) if delay ~= 1 then...
  7. Critico

    Clean Houses

    function onSay(cid, words, param) doSaveServer() local query = db.getResult("SELECT `id` FROM `houses`;") if (query:getID() ~= -1) then while true do local houseid = query:getDataInt("id") setHouseOwner(houseid, NO_OWNER_PHRASE,true) if not(query:next()) then break end end query:free() end...
  8. Critico

    Npc Problem

    function getAccountPoints(cid) local res = db.getResult('select `premium_points` from accounts where name = \''..getPlayerAccount(cid)..'\'') if(res:getID() == -1) then return false end return tonumber(res:getDataInt("premium_points")) end function doAccountRemovePoints(cid, count) return...
  9. Critico

    Iron Man 3 (May 3rd, 2013)

    april 2013*
  10. Critico

    [MOD] Characters Market System (In Game)

    u mad? data/talkactions/scripts/character.lua:1: LOL?? this code is MOD placed in the folder MODS
  11. Critico

    Lua Rented Horse Script

    http://otland.net/f83/rent-mounts-161585/
  12. Critico

    Auction Npc

    n sei mexer com php
  13. Critico

    Auction Npc

    vou deixar link para quem se interessa: link removido
  14. Critico

    Lua Error war script

    try change: db.query to db.executeQuery
  15. Critico

    Request: Npc 'Trade' but not for gp.

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid)...
  16. Critico

    Auction NPC

    JHON-SOFT - Auction Npc
  17. Critico

    [Function] Getguildmembers Online/offline

    About: has two functions return the players of a certain guild, one serves only to pick up a guild of players who are online and the other returns all players even if you are offline. function getGuildMembersOnline(GuildId) local players = {} for _, pid in pairs(getPlayersOnline()) do...
Back
Top