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

    Lua onSay on any word

    Hi, is it possible to make a talkaction which execute on any string? Something like <talkaction words="*" />? TFS 0.4
  2. Hernest

    Anti-clone

    Hello, sometimes players are crashing server with strong DDOS and then they are cloning items. Months ago I saw a solution, but now I can't find it. It was like: every item got uniqueid in database. Maybe someone have this system? TFS 0.4 3884
  3. Hernest

    Decreasing exhaust?

    Is there any way to decrease exhaust for spells? Only when the storage is equal to 1 or something, so changing in spells.xml isn't a solution. The idea is a rune which is decreasing spells exhaust for some time.
  4. Hernest

    Bigger damage vs monsters

    Hi, is there any way to boost player damage vs monsters? For example if storage==1 then damagevsmonsters = damagevsmonsters * 2 TFS version doesn't matter.
  5. Hernest

    npc+backpack system trade

    Looking for something like this It can be for every protocol of tfs
  6. Hernest

    8.6 npc+backpack system

    I am looking for something similar, do someone know from where can I get it? When there isn't available script like this I would like to know any method to open backpack which isn't near player/on player.
  7. Hernest

    Lua addevent small problem

    I want to remove item from a tile after x seconds. function onAddItem(moveitem, tileitem, position) local uidd = moveitem.uid addEvent(doRemoveItem, 3*1000, uidd) end [21:47:56.373] [Error - MoveEvents Interface] [21:47:56.373] In a timer event called from: [21:47:56.373]...
  8. Hernest

    Lua TFS 0.4 paralyze field

    Hello, I am making a rune like poison bomb, but those summoned fields are paralyzing/slowing creatures. To make this paral work I have to connect aid/uid with fields. Any ideas how to create fields with aid/uid via CombatObject? local combat = createCombatObject() setCombatParam(combat...
  9. Hernest

    Compiling 7.6 avesta

    Hello, I'm looking for a small guide/help with compiling avesta engine on 7.6 from this thread. Debian 8, got some libraries, I'm able to compile tfs 0.4 8.6 on this dedicated server but I can't figure out how to compile Avesta, thanks for tips :D
  10. Hernest

    Compiling Cast system rev 3884

    Hello, is there any working source with cast system rev 3884?
  11. Hernest

    Compiling TFS 0.4 rev 3884

    Hello, is there any working tutorial for compiling tfs 0.4 on debian 8 or 7? I found few but it's not working at all.
  12. Hernest

    Lua TFS 0.4 isWalkable()

    Hi, is there something like isWalkable()?
  13. Hernest

    Lua TFS 0.4 reference to channel

    @edit Everything what I said before edit was wrong. How can I let people to talk in specified channel only when storagevalue == 1? I am trying to create something like mute system on specified channel, but I have no idea how to check something while talking for example on help channel with id 9?
  14. Hernest

    Lua TFS 0.4 isMonster(x)

    Hello, I came here because something is wrong with my isMonster function. Player can choose monster with for example: /arena Demon, then table[cid] = Demon. I want to check if it is monster or not. isMonster(table[cid]) always returns false, it's a string, also tried with isMonster(Demon) and...
  15. Hernest

    Lua TFS 1.2 Player kill w/o frag

    Hello, can somebody help me with it? I want to do something like: when globalstorage == 1 then player kill is not adding a frag, something like killing without consequences. There is any short way to do it?
  16. Hernest

    Lua something like getplayersonscreen tfs0.4

    Hello, is there any function like getPlayersOnScreen(cid) which will return a number of players on screen?
  17. Hernest

    Lua executeQuery tfs 1.2

    function onThink(interval) local godzina = math.random(1,24) db.executeQuery("UPDATE `server_config` SET `value` = `zero` + " .. godzina .. " WHERE config = `bon_exp`;") end Lua Script Error: [GlobalEvent Interface] data/globalevents/scripts/exp.lua:onThink...
  18. Hernest

    TFS 0.3.6 or 0.4 CASTLE SYSTEM

    Hello, is there any castle system working for 0.3.6 or 0.4? I found a castle system made by maniucza but it's broken.
  19. Hernest

    Lua TFS 0.4 db.getResult

    local gpoints = db.getResult("SELECT `event_points` FROM 'accounts' WHERE `name` = '" .. getAccountByName(getCreatureName(cid)) .. "' LIMIT 1;") if(msgcontains(msg, 'points')) then npcHandler:say("Points: " .. gpoints .. ".", cid) end mysql_real_query(): SELECT `event_points` FROM 'accounts'...
  20. Hernest

    Sometimes aol doesn't work

    Hello, it's me, again. Well, on my server sometimes aol doesn't want to work. It's TFS 0.4. When players are fighting in PVP sometimes aol is not working, players can lost their backpack, items. Only 2 players on server lost items with aol, but I am sure it's not scam. I had this problem years...
Back
Top