• 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. Count Dracula

    Sprite/Dat Editor for 10.98

    Don't you think it might be one for tibia 10? @danio4don
  2. Count Dracula

    Monster transforms after some time

    Sorry, but I don't know how to use onCreatureAppear... Could you give me an example?
  3. Count Dracula

    Monster transforms after some time

    I forgot I need to make the new creatures also summons of the "master"... I tried to do as you said and created the spell for the monster "master": local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_NONE) local area = createCombatArea(AREA_CIRCLE2X2) combat:setArea(area)...
  4. Count Dracula

    Monster transforms after some time

    Hi guys. I'm trying to make the summons of one boss transforms themselves after sometime into stronger creatures if not killed fast. I thought in doing a custom spell for the summons, like this: local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_NONE) function...
  5. Count Dracula

    Clear Area if player is off the screen

    I tried and also works for me.
  6. Count Dracula

    Clear Area if player is off the screen

    In my case, the monster only appears if I step in a certain tile inside the room, so it's impossible the creature is there before the player.. But I didn't really understand what changes you made.. can you please explain me?
  7. Count Dracula

    Clear Area if player is off the screen

    I just tested it and it works @Colandus , only removes the monsters if there is no player on the screen.
  8. Count Dracula

    Clear Area if player is off the screen

    Thank you so much @Xeraphus I only changed it to work as an event, and it worked flawless.
  9. Count Dracula

    Clear Area if player is off the screen

    It doesn't give any errors @Colandus , simply doesn't work. It keeps removing the creatures even if has players on the screen.. Removing the monsters is easy, but only remove them if the players are off the screen it's the tricky part. This only make remove the monsters on the screen...
  10. Count Dracula

    Clear Area if player is off the screen

    local function clearArena() local spectators = Game.getSpectators(Position(1, 2, 3), false, false, 15, 15, 15, 15) for i = 1, #spectators do local spectator = spectators[i] if spectator:isPlayer() then return true end if spectator:getName():lower()...
  11. Count Dracula

    Clear Area if player is off the screen

    Hello guys As the title says, I'm trying to remove two kinds of monsters in the screen if there is no player, but with addEvent... But after a lot of try and error, nothing worked.. My tfs version is 1.2 Thanks!
  12. Count Dracula

    Solved Global Storage Problem

    I managed to get it working with this post: https://otland.net/threads/global-storage-tfs-1-2.245524/ Thanks anyway
  13. Count Dracula

    Solved Global Storage Problem

    I thought that the function Game.setStorageValue would do the trick... but when I restarted the server it just desappears... Sorry @Xeraphus but I don't know how to do that... can u please explain me?
  14. Count Dracula

    Solved Global Storage Problem

    My problem is that I can't give a global storage to all the players that remains even after the server has restarted.. There is anyway I can make this works? My tfs is 1.2 Thanks!!
  15. Count Dracula

    NPC MAKES COUNT

    Hi guys. I am trying to do a vip quest in which the player has to deliver to the NPC a certain amount of items (300 for example). He can deliver the items over the time and does not necessarily have to do all at once. How can I make the NPC recognize how many items he has already delivered...
  16. Count Dracula

    Multiple |STATE| in questlog

    Well, that's a shame.. Thanks @Mkalo
  17. Count Dracula

    Multiple |STATE| in questlog

    Hello guys I'm trying to do one questlog that have more then one |STATE| in it. I need to count the kills of more then one monster inside the same questlog, but how?? My usual questlog is like this: <mission name="Quest Name" storageid="xxxx" startvalue="0" endvalue="10" description="Etc etc...
  18. Count Dracula

    A mapper job!

    All this maps are from the update 10.80 My client is 10.99
  19. Count Dracula

    A mapper job!

    Hello guys. I need a mapper who can provide me with Forbidden Temple, Mother of Scarabs Lair and Swamp of Lost Souls. Someone interested?
  20. Count Dracula

    Problem with targeting

    Hello guys I need to use a vial of blood on a tile and if I have one storage, it will remove one tile and summon a monster. But if the player uses the blood without the storage nothing happens, but creates a pool of blood over the tile. My problem begins now. Because the pool of blood is over...
Back
Top