• 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!

Recent content by Hernest

  1. Hernest

    Lua onSay on any word

    anyone?
  2. 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
  3. 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
  4. Hernest

    Bigger damage vs monsters

    Made this: function onStatsChange(cid, attacker, type, combat, value) if isPlayer(attacker) then if type == STATSCHANGE_HEALTHLOSS then doPlayerSendTextMessage(attacker, 19,"message") end end return true end But the server is still crashing when it's...
  5. Hernest

    Bigger damage vs monsters

    @496815 I took your code, changed a bit to this: function onStatsChange(cid, attacker, type, combat, value) if isPlayer(attacker) and isMonster(cid) and type == STATSCHANGE_HEALTHLOSS then print("x") if getPlayerStorageValue(attacker, 15600) == 1 then print("y")...
  6. Hernest

    Decreasing exhaust?

    @BUMP Do you know where can I find exhaust in source? It's tfs 0.4
  7. 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.
  8. 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.
  9. Hernest

    npc+backpack system trade

    Wow, @496815 nice piece of code. If can I ask you for one more thing, is there any chance to simulate npc's backback with items, like on the video?
  10. Hernest

    [TFS 1.2/1.3] Free scripting service

    something like this ;p
  11. Hernest

    npc+backpack system trade

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

    8.6 npc+backpack system

    I am going to make something like this:
  13. 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.
  14. Hernest

    Lua TFS 0.4 paralyze field

    Anyone?
  15. Hernest

    Lua addevent small problem

    Forgot to say that it is tfs 0.4
Back
Top