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

    Retrocores serious privacy violation ! Watch out !

    People here are acting to prevent the spreading of spyware and you accuse them of being disgusting..? The accused has even admitted to spreading spyware, even though he refutes having comitted any crime... But yeah, it's always nice with more evidence
  2. krafttomten

    Retrocores serious privacy violation ! Watch out !

    Well.. I hope you are right Marcus, but fact is that what you have done might actually constitute a crime. And the legal contract you have on your website is not enough to install spyware on other peoples' computers. Not all criminals look like criminals. If you truly had no intention of causing...
  3. krafttomten

    How to: make creature (monster/player/npc) send text message

    I have a custom channel that shows all the loot. When I am playing I have that channel opened all the time. Everything is great until I get back from my hunt and need to sell all my awesome loot. Because every single time I write: "Hi" * return * ... wait ... wait... - Oh right! tab into...
  4. krafttomten

    OTClient 1.0 (Release)

    Seems to work so far! Thank you so much, you are an amazing person!
  5. krafttomten

    OTClient 1.0 (Release)

    First of all, thank you so much for all you work Mehah, this client is amazing! Programming my own OT is a highly appreciated hobby of mine that would not be possible without the work of all the wonderful people of this community. With that out of the way, I have a problem with the latest...
  6. krafttomten

    Python Script to make all vocation related movements into a LUA list (+ semi-automated daily reward system)

    Well, almost. It only takes any registered item that has a vocation dependancy. I am using a separate code to find the rest of the registered items, but it is kind of entangled with the first code, and it runs with imports and stuff so it's less self contained. But here's a version of the code...
  7. krafttomten

    TFS 1.X+ [LUA] [npcHandler] How to: doNpcTalkALot()

    Okay, I'll read up on this until I get it, ty *edit Easy enough perhaps, "You should always pass creatures cid, instead userdata (object) within addEvent"
  8. krafttomten

    TFS 1.X+ [LUA] [npcHandler] How to: doNpcTalkALot()

    Hello fellow person! I've looked through the forum for hours now but cannot seem to find an answer. How are doNpcTalkALot to be used properly? No matter how I use it, it either doesn't work at all, or it gives me warning messages about being "Unsafe" I have three working ways of using this...
  9. krafttomten

    Re-Working My Server - Looking for your opinions!

    Make something you enjoy yourself. If you truly enjoy what you have made then others will too. Many games are blindly listening to the community, ending up with a complete mash of different idea with no coherence whatsoever. I'm not saying to ignore feedback, just don't blindly follow the most...
  10. krafttomten

    TFS 1.X+ NPC Gorn Crash Server

    Do you know if this is an issue specifically with this "Gorn" npc of yours, or if it can be done with any NPC? If it only works with Gorn, then the question is: what makes him so special? What type of functions does he run? Can you share the XML / LUA files of Gorn? Also, do you get any lua...
  11. krafttomten

    TFS 0.X why necromancer revive rune is getting a delay?

    I'm not sure, and maybe this input is not helpful, but the reason why the unmovable corpses exist is to protect the owners right to the loot, so that nobody steals it basically. It would make sense if this system also somehow generally prevents any manipulation of the unmovable corpses.. *edit...
  12. krafttomten

    Windows Problem with public connections, private works

    I'm bumping this thread with a question. What IP should I use to connect to the database? I just updated to Znote 2.0 (switched after breaking the old 1.6 database while trying to fix this issue). There are some connection details in the config.php. If I use 127.0.0.1 as the SQLHost...
  13. krafttomten

    Windows Problem with public connections, private works

    TFS 1.4 release 1.4.1 from 3 Dec 2021. Client version 10.98
  14. krafttomten

    Windows Problem with public connections, private works

    The address i have entered in config.lua is my global IP adress, is this correct? *edit I can connect to the server from the local network no matter if I use the global IP, the IPV4, or just 127.0.0.1. I should use the global ip for public access according to this thread *edit2 If I use...
  15. krafttomten

    Windows Problem with public connections, private works

    Hellooo! So, I can't get my OT public for some reason. The ports 80, 7171 and 7172 are open according to canyouseeme.org. When my brother tries to connect to the server, he can see the character list but gets "Connection failed (ERROR 10060)" after a long delay. The windows firewall should...
  16. krafttomten

    Lua Doors script tfs 1.2

    You could make it loop over each tile and search for empty walkable tiles, if no walkable tile is empty then push onto items. Search in the order Xikini said, it seems right. The :isWalkable() method could be used for evaluating the tiles. Also :getItemCount could probably be used. I think you...
  17. krafttomten

    Wereboar, Werebadger and Werebear

    I noticed that the were-monsters have not yet been added to TFS, so I made them as accurate as I could based on the information on tibia wikia and my own memory. Many years since I played tho. I added all the custom spells and everything. They are not perfect, I think some of the spell effects...
  18. krafttomten

    [TFS 1.3] Reward based on vocation

    I'm not sure if I understand.. You give an item the actionID 7776 and some uniqueID (let's say 73486) in RME, then you add that line in actions.xml, then you create the lua file which is being referred to in the XML (in my example named and located as "quests/vocreward.lua"), that's all there...
  19. krafttomten

    [TFS 1.3] Reward based on vocation

    Oh, I thought you had it working already xD Ehh, hah I actually don't know. I thought I used it like this but apparantly I changed it on my server. You can use this code instead, function onUse(player, item, fromPos, target, toPos, isHotkey) if not item:getType():isContainer() then...
  20. krafttomten

    [TFS 1.3] Reward based on vocation

    Sure, you could assign two player storage values to hold the date and time. So the code above will give anything inside the chest as the reward. To give this reward many times you could use: local config = { storage = item.uid, exstorage = item.uid + 1 } if...
Back
Top