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

    [TFS 1.1] Monster Arena

    positions of what exactly?
  2. Aled

    [TFS 1.1] Monster Arena

    function MonsterArena.timeout() for _, k in MonsterArena.players do local p = Player(k) if p then p:sendTextMessage(MESSAGE_INFO_DESCR, 'Times up, nobody won the fight!') p:teleportTo(MonsterArena.exitPosition) for _, l in...
  3. Aled

    [France] Tibia: Battlegrounds [10.98]

    ~*Ip*~: game.tibiabattlegrounds.com ~*Port*~: 7171 ~*Client*~: Tibia 10.98 ~*Uptime*~: 24/7 ~*Hosted in*~: France, hosted on a VPS ~*Website*~: tibiabattlegrounds.com ~*Map*~: Real Map, custom mapped lobby ~*Server type*~: Custom War Features: ~*Changable map, level and gamemode*~ ~*Untouched...
  4. Aled

    where play PLAYER activeNOW?!!666$$-OTS-refresh

    you can add tibiabattlegrounds.com
  5. Aled

    War servers Y/N?

    Saw a post about this a while back but I would like to reignite the discussion topic. Why aren't war servers as popular as they used to be? particularly 10.98 war servers: https://otservlist.org/list-server_type-desc.html Would anybody like to see a modern war server? What features would you...
  6. Aled

    [LUA] requests - Sizaro #2

    adventurers blessing: [C++] Adventure's Blessing bonus loot ring, example to help you with #5 [C++ / LUA] Loot rate or chance
  7. Aled

    Lua Quest time online to do again

    if they all have the same reward and days exhaust for i = 8000,8300 do quests[i] = {item = xxxx, days = y} end go read this then ask your questions Lua: documentation I hope you learn a lot, good luck
  8. Aled

    [LUA] & possibly [C++] requests - Sizaro

    --------- CONFIG ------ local summonables = { ['Skunk'] = {level = 25, mana = 200}, ['Rat'] = {level = 25, mana = 200}, ['Badger'] = {level = 25, mana = 200}, ['Snake'] = {level = 25, mana = 205}, ['Spider'] = {level = 25, mana = 210}, ['Chicken'] = {level = 25, mana =...
  9. Aled

    [LUA] & possibly [C++] requests - Sizaro

    It happens when you kill a summon (has no loot), I didn't think about this when I wrote it I fixed mine by only registering the event to a creature with no master function onKill(player, target) if target:isMonster() then if not target:getMaster() then...
  10. Aled

    Lua Quest time online to do again

    can't you think for yourself? I used timenow in your script its timeNow so change one of them
  11. Aled

    Lua Quest time online to do again

    not enough brackets was the problem elseif getPlayerStorageValue(cid, item.actionid) < 0 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'It is empty.') elseif getPlayerStorageValue(cid, item.actionid)-timenow > days then...
  12. Aled

    Lua Quest time online to do again

    yeah sorry I was just being dumb and lazy change elseif getPlayerStorageValue(cid, item.actionid) < 0 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'It is empty.') elseif getPlayerStorageValue(cid, item.actionid) > 24*60*60 then...
  13. Aled

    Lua Quest time online to do again

    post whole script
  14. Aled

    Lua Quest time online to do again

    change else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'It is empty.') for elseif getPlayerStorageValue(cid, item.actionid) < 0 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'It is empty.') elseif getPlayerStorageValue(cid, item.actionid) > 24*60*60...
  15. Aled

    Lua New "Summon Creature" spell - TFS 0.4.0

    sorry im not so familiar with 0.4.0 but I don't think that script is going to work without an event, it looks like it needs this at the top function onSay(cid, words, param, channel) and put an end at the bottom TFS-8.60/talkaction.cpp at master · Zerua/TFS-8.60 · GitHub
  16. Aled

    Lua New "Summon Creature" spell - TFS 0.4.0

    im guessing thats Lua not HTML5 you're not posting the whole script, neither have you told me what you have done ingame for this exception to be thrown
  17. Aled

    Lua Quest time online to do again

    os.time() is in seconds not milliseconds change local mins = 60 * 1000 local hours = 60 * 60 * 1000 local days = 24 * 60 * 60 * 1000 to local mins = 60 local hours = 60 * 60 local days = 24 * 60 * 60
  18. Aled

    Lua [Help] [tfs1.2] Arena PvP

    go to your creaturescripts.xml and post any scripts that use onDeath
  19. Aled

    error in console onlogout

    whatever onLogout events you have running in creaturescripts.xml
Back
Top