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

    Lua kill boss world message

    yes it is
  2. D

    Lua kill boss world message

    i need some help with this script, what i want is, when a player kill a boss some world message appear with the name of creature and player who killed it...currently i have this local bosses = {"Demodras","The Horned Fox","Necropharus","The Old Window", "Morgaroth","Zulazza The...
  3. D

    Lua Top effect error tfs 1.x

    thx a lot for the help i just edited my code with your replies and end up like this, and it works function TopEffect(player) if isPlayer(player) then player:addItem(5809, 1) player:say('TOP!', TALKTYPE_MONSTER_SAY)...
  4. D

    Lua Top effect error tfs 1.x

    nope, it shows a "nil value" at console in line "if (query:getID() ~= -1) then"
  5. D

    Lua Top effect error tfs 1.x

    i've got this error.. when trying to execute this script query = db.storeQuery("SELECT `name` FROM `players` ORDER BY `level` DESC, `experience` DESC LIMIT 1") if (query:getID() ~= -1) then name = query:getDataString("name") if player:getName(player) == name then...
  6. D

    Solved Change effect on player login TFS 1.x

    ok, i've managed to change the effect, it was in protocolgame.cpp, thanks a lot
  7. D

    Solved Change effect on player login TFS 1.x

    awwwwww ok, ill make some googling stuff about that :D thx
  8. D

    Solved Change effect on player login TFS 1.x

    i dont have those kind of files in my server folder just data folder and .xml and .lua .....
  9. D

    Solved Change effect on player login TFS 1.x

    well, i cant find the line to change the effect at player login, i doble checked login.lua up and down. can anyone tell where to find it?
  10. D

    Lua Top level effect tfs 1.x

    thx a lot..
  11. D

    Lua Top level effect tfs 1.x

    im tying this code..more simple but cant manage to make it work....dunno if its wrong writed (im begginner in scripting things), becuse i tryied to translate it from tfs 0.x to tfs 1.x local tiempo = 10 function onLogin(player) query = db.storeQuery("SELECT `name`, `level` FROM...
  12. D

    TFS 1.X Bounty Hunter System

    nice men, it works perfect
  13. D

    Lua Top level effect tfs 1.x

    there is no error in console..... hmmm if the player storage con only be integers then i can use data from de db like order players per level then get the top level?
  14. D

    Lua Top level effect tfs 1.x

    hi, need some help here cuz i'm too amateur in scripting.....im trying to convert to tfs 1.x the top level effect posted here: http://www.tibiaking.com/forum/topic/49367-toplevel-effect/ and this is what i have so far.. local config = { tempo = 5, --time in secs mensagem = { texto...
Back
Top