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

    Cooldown spells inside the ball

    Up
  2. M

    "doTransformItem" Function Bugging AutoLoot

    I made this change to put the local variable (item), but it keeps giving the same error. :(
  3. M

    "doTransformItem" Function Bugging AutoLoot

    Hello everybody! Next... On my server every time someone opens a box the autoloot stops working (for the whole server, not just for the player that opened it). Both the box and the autoloot work perfectly, however, when someone uses the box and receives the pokemon, the autoloot stops working...
  4. M

    Different daily task for each player

    Thanks! If you can, it would help me a lot. Is having a lot of ks on my server because of that.
  5. M

    Different daily task for each player

    beauty. Thank you for your help
  6. M

    Different daily task for each player

    if I change os.date("%d") to os.date("%H") or os.date("%M") it doesn't work. I switched to minutes and went to do the task. I finished the task and when I returned to the NPC to deliver instead of giving me the reward he gave me another task. If I do it this way I will have to finish the task...
  7. M

    Different daily task for each player

    I would like the NPC to change the monsters he gives to each player. When the first player goes to take the mission, the npc will offer the monster X and Y. when the second player goes to take the mission the npc will offer the monster A and B. Understood? As it is now he is offering x and y...
  8. M

    Different daily task for each player

    can you tell me how that part of the script would look with this change?
  9. M

    Different daily task for each player

    Sorry. the table with the options is in the folder data\lib\107-main tables.lua The part of this script with the table is this: diarias = { Easy = {"Botamon", "Poyomon", "Yuramon", "Nyokimon", "Pichimon", "Pabumon", "Kuramon", "Kiimon", "Leafmon", "Pafumon", "Relemon", "Metal Koromon"...
  10. M

    Different daily task for each player

    Save ladies and gentlemen! I have a script on my daily task server, it works normally. Only he gives the same task to ALL players on the server. There is a table with several monster options for the player to kill, he takes 2 random monsters inside that table and the player can choose one of...
  11. M

    Item cannot be used in cities

    It worked. thank you so much!
  12. M

    Item cannot be used in cities

    tfs 0.3.6 1620682938
  13. M

    Item cannot be used in cities

    now the card doesn't work, anywhere on the map.
  14. M

    Item cannot be used in cities

    it didn't work here. I edited the xyz positions, but it is still being used in the city: c
  15. M

    Item cannot be used in cities

    Good morning people. I have a script on my server that is an item to summon monsters. When the player uses the item, it will summon 3 monsters around the player for him to kill those monsters. The problem is that the item can be summed up on the DP side and the monsters stay there and attack...
  16. M

    NPC talking to 1 player at a time

    Hail guys! I have a problem with my server, NPCs are only talking to 1 player at a time. If someone arrives and tries to talk to the NPC while someone else is already talking to him, the player who arrived later will join the queue. The NPC only talks to him after the other player who was...
  17. M

    Check number of VIP days when logging in

    worked perfectly. Wow, I can't believe it was just that. thank you so much
  18. M

    Check number of VIP days when logging in

    Forgiveness by mistake. I was trying to edit my code and ended up changing it. I'll post again with the right script this time. This one has a 30-day counter, how can I do it so that after those 30 days have finished removing the player's storage? I am using a TFS version 0.3.6 local a = {...
  19. M

    Check number of VIP days when logging in

    function onSay(cid, words, param) if getPlayerStorageValue(cid, 123456) == 1 then return doPlayerSendTextMessage(cid, 20, "Ya eres Vip.") and true else if getPlayerItemCount(cid, 2145) < 8 then return doPlayerSendTextMessage(cid, 20, "Necesitas de 8 diamond para comprar vip.") and true end if...
Back
Top