• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. VictorOtInfinit

    where i can find the list of area effects?

    Like this: <attribute key="areaEffect" value="greenbubble"/> or <attribute key="shootEffect" value="smallice"/>
  2. VictorOtInfinit

    NpcSystem: Parameter(s) missing for items: nil nil

    I have this warning in my console and i dont know how to solve: The NPC work's. He sell the item, its fine, but why this warning? PS: Already tried put Mining Crystal Pickaxe, 37598, 5000000,1/0; still not working NPC xml: <?xml version="1.0" encoding="UTF-8"?> <npc...
  3. VictorOtInfinit

    Set player storage on death

    not even calling this when player die :(
  4. VictorOtInfinit

    Set player storage on death

    1.3
  5. VictorOtInfinit

    Set player storage on death

    Theres no script is this line: player:setStorageValue(110000,-1) When player die, this /\ happens. Got it? 1608761696 How i do that?
  6. VictorOtInfinit

    Set player storage on death

    How can i set a storage when player die? I'm trying to put that on death.lua and login.lua, but if the player die, then alt+f4 the game the storage ins't setted. Any tips?
  7. VictorOtInfinit

    TFS 0.X How to make that only one vocation can use DUALWIELD?

    I guess the easy way to do that is putting every weapon that is dual usable only for the class that u want, if all the one handed swords can be dual then this means that everyone who can equip this swords is dual.
  8. VictorOtInfinit

    TFS 1.2 How can i edit this code so it would spawn only one Boss

    GLOBAL VARIABLE lastBoss = 1 (last boss summoned was 1(example) -- this is to prevent that boss 1 go again in a row if getGlobalStorageValue(boss1) == 0 and lastBoss ~= 1 then spawn boss 1 setglobal....(boss1,1) setglobal....(boss1Timer,time-os.time) lastBoss = 1 return true elseif...
  9. VictorOtInfinit

    TFS 1.2 How can i edit this code so it would spawn only one Boss

    Just put 1 storage for each boss like the bosses in Thais temple has.
  10. VictorOtInfinit

    TFS 1.2 How can i edit this code so it would spawn only one Boss

    Try: Set a globalStorageValue(number,1) when boss is spawned Set a globalStorageValue(number,0) when the boss is killed with a function onKill/onDeath If globalStorageValue(number) == 1 , then not spaw another boss, else, spawn and set to 1. BTW: like Xikini said this functions get all...
  11. VictorOtInfinit

    Best/Solid sources in your opinion.

    Nice, i'm reviewing all the scripts to see what the heck is going on. BTW, its your repository?
  12. VictorOtInfinit

    Best/Solid sources in your opinion.

    I want to know what is the best/solid (free or not) source in your opinion. My source is crashing a lot and i already tried everything so i want to change and i need opinions about it to pick one good this time. I'm using TFS 1.3, Tibia V: 10x
  13. VictorOtInfinit

    Crescent time.

    i'm looking more for a function that counts time than something from 0 1607978537 hmmmmmm i think i see where i go now. ty
  14. VictorOtInfinit

    Crescent time.

    I need this script: Player 1 move to a tile -> A timer is started Player 2 move to the same tile -> A timer is started, the timer of Player 1 stops. If Player 1 already passed in that tile before do a SUM of timers to get the total time that player 1 spended in the tile Ex: Player 1 move to...
  15. VictorOtInfinit

    Chat Loot (Loot channel)

    solved, its on events/monsters
  16. VictorOtInfinit

    Cast System

    I followed the tutorial and fucked up all my sourcers, maybe that one work for my
  17. VictorOtInfinit

    where are my loot msg appearing?

    worked, ty very much!!!!!!!!!!!!!
  18. VictorOtInfinit

    where are my loot msg appearing?

    know i see, i'm trying to send to another channel like this: player:sendChannelMessage(player,MESSAGE_LOOT, TALKTYPE_CHANNEL_O, CHANNEL_LOOT) But no sucess atm, can u help me?
Back
Top