• 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 Evil Hero

  1. Evil Hero

    Lua [TFS 1.6+] Converting NPC's (Jiddos system) into new NPC System (Evil Heros system)

    Just an example of a Npc conversation, which can now be easily done with the new onSight event method
  2. Evil Hero

    [TFS 1.5] Raw Functions and Variables dump

    It's basicly just a gather of informations about which functions/enums exist, you have everything in one file here regardless of it coming from sources or lua itself
  3. Evil Hero

    The Forgotten Server 1.6

    For those who want to have a better overview of the 1.7 - 1.8 Development cycle you can from now one see our Github Project which gives a better overview Github Project 1.7 - 1.8 Roadmap
  4. Evil Hero

    The Forgotten Server 1.6

    Post was hidden until everything was prepared :p
  5. Evil Hero

    Solved Door access when items are turned in issue

    I'm absolutely stunned you should get an award for this! In all my years this is the most creative and at the same time the worst way of registering a revscript 😂 I just edited the version which @abdala ragab provided (not tested) -- Configuration local doorsConfig = { [9000] = {doorID =...
  6. Evil Hero

    Lua [TFS 1.6+] Converting NPC's (Jiddos system) into new NPC System (Evil Heros system)

    I've added something similar to your suggestion now local weaponShop = { [2400] = {buy = 2000, sell = 1000}, [2402] = {buy = 50, sell = 25} } local shop1 = NpcShop(npc, 1) shop1:addItems(weaponShop) -- adds discount before calling callback, discount if set is always applied before...
  7. Evil Hero

    [TFS 1.5] Raw Functions and Variables dump 1.0

    This file includes a complete raw data dump of all the current functions and variables from TFS 1.5 The file is just for linters or to search something specific PLEASE DO NOT LET YOUR SERVER LOAD THIS FILE
  8. Evil Hero

    [TFS 1.5] Raw Functions and Variables dump

    Evil Hero submitted a new resource: [TFS 1.5] Raw Functions and Variables dump - It includes all source code lua functions/variables + all in the datapack Read more about this resource...
  9. Evil Hero

    Lua [TFS 1.6+] Converting NPC's (Jiddos system) into new NPC System (Evil Heros system)

    I can understand that the need for better AI is absolutely mandatory and I'll surely try to get more and more covered over the time. Feel free to open up an Issue at Issues · otland/forgottenserver (https://github.com/otland/forgottenserver/issues) proposing your changes, that way I wont forget...
  10. Evil Hero

    The Forgotten Server 1.6

    Hello Folks~ It's been almost 3 long years since the release of 1.4.x We are here to happily announce the release of 1.6! From now on we are planning to have steadier (stable) releases. The development cycle will always be the odd number (ex: 1.7) while the (stable) release will be even (ex...
  11. Evil Hero

    Lua [TFS 1.6+] Converting NPC's (Jiddos system) into new NPC System (Evil Heros system)

    Well you could achieve most of that by using callbacks local npcType = Game.createNpcType("example") npcType:defaultBehavior() function npcType:onThinkCallback() -- your custom thinking code which does not override the default behavior of the npc end function npcType:onSayCallback(npc...
  12. Evil Hero

    [TFS 1.4.2] Item Rental System!

    You're correct that's a problem, but in this case I'd rather let them suffer for their connection loss, if we take this by percentage the abusers will outweight connection loss by far atleast in my opinion. You could probably consider removing it at logout and having it in a "pending state"...
  13. Evil Hero

    [TFS 1.4.2] Item Rental System!

    That probably wont work, imagine if the player just goes and dies 😅 I suggest using an onLogout script and just move the item back to the owner if the player tries to logout (includes death aswell) You clearly have no good intentions logging out while having a rented item, so it's a little...
  14. Evil Hero

    Lua [TFS 1.6+] Converting NPC's (Jiddos system) into new NPC System (Evil Heros system)

    You can run both at the same time, there is no plan on deprecating xml npcs before 1.8 release, that way people have enough time to adapt and re write their npcs into the new system before we remove the old one.
  15. Evil Hero

    [TFS 1.4.2] Item Rental System!

    What happens if the person who rented the item just logs out and never back in?
Back
Top