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

    OTClient Any decent bot for OTclient?

    3 years ago i used Otclient, it was already amazing, but the bots was sucks... There was only Candybot, but it was not even close to a basic bot for classic Tibia It has changed? I don't trust OTCV8 i would like to use an open source project like: mehah/otclient...
  2. zexus

    TFS 0.X Dynamic quest log

    All the quests in my server are temporary... For now i'm using the talkaction !quests to show all the quests blocked... But i would like to use quest log... Is it possible? The talkaction: mins = 60 hours = 60 * 60 days = 24 * 60 * 60 xikini_quest_list = { -- rook [8000] = { name =...
  3. zexus

    TFS 0.X data/actions/scripts/quests/quests.lua:4: attempt to index local 'value' (a nil value)

    Why my quests is not working? It is showing this error on console: error on console: [20:0:29.635] [Error - Action Interface] [20:0:29.635] data/actions/scripts/quests/quests.lua:onUse [20:0:29.635] Description: [20:0:29.635] data/actions/scripts/quests/quests.lua:4: attempt to index local...
  4. zexus

    TFS 0.X talkaction to show the date you can do the quest again

    i have this amazing quest system, where players can do quests more then one time, i mean you can do katana quest on rookgaard each 10 hours, it is working for every quest quests.lua local mins = 60 local hours = 60 * 60 local days = 24 * 60 * 60 local quests = { --...
  5. zexus

    TFS 0.X talkaction to show the date you can do the quest again

    i have this amazing quest system, where players can do quests more then one time, i mean you can do katana quest on rookgaard each 10 hours, it is working for every quest quests.lua local mins = 60 local hours = 60 * 60 local days = 24 * 60 * 60 local quests = { --...
  6. zexus

    TFS 0.X SSA and Might Ring not work after add exausted

    I'm using this scripts to exausted on SSA/Might Ring: <!-- onequip_exausted_pvp --> <movevent type="Equip" itemid="2197" slot="necklace" event="script" value="onequip_exausted_pvp/ssa_exhaust.lua"/> <movevent type="DeEquip" itemid="2197" slot="necklace" event="script"...
  7. zexus

    TFS 0.X SubType missing for parameter item:

    It shows everytime i open my server [Warning] NpcSystem: SubType missing for parameter item: blank rune,2260,10 [Warning] NpcSystem: SubType missing for parameter item: blank rune,2260,10 [Warning] NpcSystem: SubType missing for parameter item: blank rune,2260,10 [Warning] NpcSystem: SubType...
  8. zexus

    TFS 0.X Quests on Quest Log with a storage time

    I found and use this amazing quest system i found on forum. local mins = 60 local hours = 60 * 60 local days = 24 * 60 * 60 local quests = { -- /data/creaturescripts/quests.lua -- rook [8000] = { item = 2385, lvl = 1, time = 15 * mins}, -- sabre [8001] = { item = 2485, lvl = 2...
  9. zexus

    Quest log on lua 0.4

    I found here on forum this amazing quest system, where players can do a quest more then one time. local mins = 60 local hours = 60 * 60 local days = 24 * 60 * 60 local quests = { -- /data/creaturescripts/quests.lua -- rook [8000] = { item = 2385, lvl = 1, time = 15 * mins}, -- sabre...
  10. zexus

    TFS 0.X quest log on lua 0.4

    https://github.com/otland/forgottenserver/pull/1973 Is this possible to do quests log on lua on 0.4 like @Mkalo made to 1x? how to? bump bump bump bump bump
  11. zexus

    Quest time on quest log

    I found here on forum this amazing quest system, where players can do a quest more then one time. It just need to wait a time to do again, but this time only shows when player try to open the chest. I have i idea, but no idea how to make it possible How to add this quests on questlog and on...
  12. zexus

    Player Loot Rate

    The only way i know and found about change loot rates is to change global loot rate On config.lua (rateLoot = 1.0) Is this possible to edit in a OT to change player loot rate for just one player? There is a lot system a want to do with this... Is anybody know how to do it? --- obs1: I'm...
  13. zexus

    Lua Check fields ladders to up

    I wanna make something different in my pvp, i wanna check the ladders before player can get up. For example, if have fire field, mw the player can not get up on ladders I've tried it: function onUse(cid, item, fromPosition, itemEx, toPosition) -- there is MW or ELEMENTAL FIELDS in pos...
  14. zexus

    TFS 0.X Change Loot rates for a player

    There is a way to change the loot rate for only one player? I do using this source code: Fir3element/3777 And i wanna make some items to add more loot chance. I've search a lot and the only thing i got was this mod with onKill event <?xml version="1.0" encoding="UTF-8"?> <mod name="Loot...
  15. zexus

    Lua Auction system + bank

    Bank NPC script: http://hastebin.com/ecenupivug.lua Auction Talkaction script: http://hastebin.com/turofepoke.lua From (https://otland.net/threads/offline-player-to-player-item-trader-auction-system.51447/) I want to remove this auction_balance its useless ALTER TABLE `players` DROP...
  16. zexus

    Delete from mysql when kill

    Looking this system: https://otland.net/threads/bounty-list-on-npc.246375/ I saw 3 things unnecessary saved on DB Who Kill Who kill id again Date when have killed So i delete it from MYSQL Using: ALTER TABLE `bounty_hunters` DROP `kill_time`; ALTER TABLE `bounty_hunters` DROP `killed`; ALTER...
  17. zexus

    Compiling RME wont compile on LUbuntu 16.04

    Fixed / edited... To fix use: sudo apt-get install git libboost-system-dev libboost-thread-dev libglu1-mesa-dev libwxgtk3.0-dev libarchive-dev cd /home/carlos/Documents git clone https://github.com/hjnilsson/rme.git cd rme && mkdir build && cd build apt-get install cmake // (to fix: No...
  18. zexus

    Compiling OTClient wont compile on LUbuntu 16.04

    Problems with OTClient compile? Follow this steps by: robertov82008 https://gist.github.com/robertov82008/3af0461b31b14887506af84f3a00c1ac
  19. zexus

    Compiling OTClient wont compile on LUbuntu 16.04

    I've install all what was necessary to compile my OTClient sudo apt-get install build-essential cmake git-core sudo apt-get install libboost-all-dev libphysfs-dev libssl-dev liblua5.1-dev sudo apt-get install libglew1.6-dev libvorbis-dev libopenal-dev libz-dev (libboost1.55-all-dev can't be...
  20. zexus

    Lua Summon monk + monster rats

    How to make to when player use: utevo res "monk Create a /s Monk, but create 2 rats to train defense like: /m Rat /m Rat ??? I've look on spells.xml but show me this: <!-- Summon Spells --> <instant name="Summon Creature" words="utevo res" maglv="16" params="1" exhaustion="2000"...
Back
Top