• 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

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

    I tried to rename quests to quests_list data/actions/scripts/quests.lua local mins = 60 local hours = 60 * 60 local days = 24 * 60 * 60 quests_list = { -- rook [8000] = { name = "Sabre Rook", item = 2385, lvl = 1, time = 15 * mins}, [8001] = { name = "Doublet Rook", item = 2485...
  2. zexus

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

    i don't understand why this one works CreatureEvent - Skills & magic level stages (https://otland.net/threads/skills-magic-level-stages.49165/) and this mine not, looks same :( anybody knows?
  3. zexus

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

    This script did this same stuff: CreatureEvent - Skills & magic level stages (https://otland.net/threads/skills-magic-level-stages.49165/) To don't have to reply the same configs everywhere What do i doing wrong?
  4. zexus

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

    You was right... I tried to don't need to always need to ctrl+c ctrl+v quests By loading quests from actions to use on talkactions To do this i tried: quests.lua (talkactions) dofile(getDataDir() .. "actions/scripts/quests.lua") function onSay(cid, words, param, channel) print(mins)...
  5. zexus

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

    i'm so sorry this so long, i didn't know someone was help... thank you so much for this base... @Mr Trala I tried to do something with your base: local mins = 60 local hours = 60 * 60 local days = 24 * 60 * 60 local quests = { [8000] = { name = "Sabre Rook", item = 2385, lvl = 1, time =...
  6. zexus

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

    i dont know what could i do :(
  7. 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 = { --...
  8. 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 = { --...
  9. zexus

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

    looks like it is working but how to show how many time left to the players? -- <!-- Made By Nemo --> local exhaustTime = 5 -- time in seconds local exhaustStorage = 200001 function onEquip(cid, item, slot) if getCreatureStorage(cid, exhaustStorage) <= 0 then...
  10. zexus

    Do not use/buy OTC V8

    Lol did never heard about this @fabian766 client The sad true is: if he not make a good bot running together the client as kondra did none of regular players will use the client
  11. 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"...
Back
Top