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

    Feature Embedded proxy in your server.

    This was made in TFS 1.3 but should work in any TFS distribution as long you implement it correctly. It works by changing the gameserver ip and port that the client is going to connect to. The proxyId is bound to the account and should be changed through your website. I won't provide any web...
  2. Mkalo

    Fix/Patch Teleport Stackoverflow

    There is some people intentionally placing teleports that leads to itself or to another teleport to make an infinite loop causing stackoverflow. This will print warnings on map loading if there is teleports like that. detectteleport.patch · GitHub
  3. Mkalo

    NPC working with balance.

    After 10.94: Place this at the first line of npc/lib/npcsystem/modules.lua: function Player.removeMoneyNpc(self, amount) local moneyCount = self:getMoney() local bankCount = self:getBankBalance() if amount > moneyCount + bankCount then return false end...
  4. Mkalo

    Monsters walking around fields behaviour.

    So, I did a small code to fetch the data necessary to do it but there are plenty missing, so maybe with the help of everyone we can gather this information: The failed ones may be found on the wiki but my code was not able to fetch the data because wiki is case sensitive and some creatures have...
  5. Mkalo

    Programmer [Lua, C++] Freelancing for a limited time.

    Experience: Almost 7 years of experience with Lua and 4 for C++, I will probably be able to do any request you have. You can see some of my works released in otland here: https://otland.net/search/member?user_id=129953&content=thread Rules: 1) My time is pretty limited. I will mostly be doing...
  6. Mkalo

    The best of brazilian culture.

    Translated: (If you really want to listen the portuguese version search for "bumbum granada")
  7. Mkalo

    [C++] Bitmap files

    A little code to read and write bitmaps and apply some filters. (Only 24 bits). Doesn't support resizing, cropping or adding stuff but it's not hard to do I just didn't need it for now. Code: http://pastebin.com/0USqrC6E Example: https://imgur.com/a/Twckv (I know it's not the best code, I am...
  8. Mkalo

    [Python] Pong

    Meh I was asked to do that in the college so I did it. Using PPlay that is a framework(module based on pygame) developed at my college http://www2.ic.uff.br/pplay/ (The website is broken if you select english... the fuck) I had to do it in 3 hours. Made in 2 so the code is a freakin garbage...
  9. Mkalo

    Osu!

    Well, who here has already played it? Post your profile maybe we can all play multiplayer some time :) Game: https://osu.ppy.sh/ Video: It's totally free. Everyone should give it a try its really funny :)
  10. Mkalo

    Opening market using talkactions/OTClient/npcs

    Did anyone ever did it? I mean its pretty common in other rpgs. Not that hard to do either so why?
  11. Mkalo

    Bye

    Just kidding bored as fuck no class for 3 hours. Kill me.
  12. Mkalo

    TalkAction Advanced Online List

    (Using pagesize 2 with 3 players online.) You need to install this in order to use this talkaction: https://otland.net/threads/tfs-1-2-modal-window-helper-lib.238773/ Lib: http://pastebin.com/vP76PWdb Talkaction: function onSay(player, words, param) player:sendOnlineModalWindow(param)...
  13. Mkalo

    [INCOMPLETE] Dynamic Combats

    I won't have enough time to complete this lib, it was supposed to replace the Combat() and createCombatArea() functions as you can only use them at the start of the script, with this lib you would be able to modify the area and have more flexibility to damages, effects, area etc. Well this...
  14. Mkalo

    Flying mount system TFS 1.2

    Demo: You can see the source changes here: https://gist.github.com/Mkalo/32f7b36931f4992fa131252b51fbbeb9 Install this lib in your server: http://pastebin.com/3p1DU2Qa (All the config is in the lib) Now to events and shit: (The tags are commented inside the code.) Creaturescript: --...
  15. Mkalo

    Free Scripting. TFS [1.2]

    Rules: ONLY TFS 1.2 ONLY TFS 1.2 ONLY TFS 1.2 Don't ask for fix/convert/copy a script. Provide enough information about your request (you may provide a video as long its made by you). I may not answer you if you don't. Ask only for advanced and complex scripts/systems. You may ask for simple...
  16. Mkalo

    [LIB] Storing Information (Items and Players) TFS 1.2

    The purpose of this lib is to add flexibility to what you're going to save in your server about players and items. For example, using this lib you can save any string, table, boolean or number in a player and/or in an item and it will be saved in the database. For the item part I had to edit...
  17. Mkalo

    Action Advanced Monster Arena TFS 1.2

    This is supposed to suit any idea you have of arena, you just have to use it correctly. Lib: http://pastebin.com/tnkwCDCa Updated (17/04/2016) Old: http://pastebin.com/R4s96bwZ Creaturescripts: (Both death events) <event type="death" name="ArenaEvent" script="arenaevent.lua"/> <event...
  18. Mkalo

    Doing requests while streaming.

    I'll be doing some requests for a couple of hours today while streaming, want to try this out maybe its helpful for someone. http://www.twitch.tv/mkalo Currently doing: https://otland.net/threads/list-of-useful-tfs-1-0-1-1-scripts.228391/page-2#post-2211254 I'll probably do others from this...
  19. Mkalo

    String streams

    Made it just for fun: Stream = {} setmetatable(Stream, {__call = function(_, ...) local args = {...} local strtab = {} for i = 1, #args do if type(args[i]) == "string" then table.insert(strtab, args[i]) elseif type(args[i]) ==...
  20. Mkalo

    Monster "Artificial Inteligence" (Behavior)

    For TFS 1.2, however you could easily convert it to any TFS. Demo: (I know the quality/fps is shitty, deal with it) I know its not AI. Its just a set behavior but whatever I wanna call it AI, because its click-baity. You can basically do any behavior you want pretty easy, I did only 2 for...
Back
Top