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

    Mail + Bank system for 0.2.14

    Dafuq, I'm using 0.2.14 and my mail system is working perfectly. Here is my banker Mr. poopsiedoodle. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic, count, transferTo_name = {}, {}, {} function...
  2. trollebror

    Lua How costly is this kind of operations (SQL)?

    Hello OTLanders! I'm wondering about exactly how efficient or inefficient is it to use this kind of database operations. function insertToSQL(accid, time, admin_id, comment) return db.executeQuery("INSERT INTO `someDataz` ... ") end function getBanAccInfo(acc) local info,qry =...
  3. trollebror

    [REQUEST] Minecraft-style crafting

    Rofl, WHY SO TRUE?! :rolleyes:
  4. trollebror

    [REQUEST] Minecraft-style crafting

    I was thinking about the same type of "next-level-weapon"/enchantment as you mentioned. Though it's sad that it's not possible to modify items with the TFS 0.2.~/1.0 distros (which I prefer).
  5. trollebror

    [REQUEST] Minecraft-style crafting

    Sounds like something I would like on my server. What items have you thought about?
  6. trollebror

    Help me server crashes

    It hangs while it loads your map, try to load another map instead. That way you will know if your map files are corrupt or not.
  7. trollebror

    Ghettobird's scripts

    Go to your config.lua -> kickIdlePlayerAfterMinutes = 10
  8. trollebror

    Lua Donation points quest reward

    Check this out Jajjje.
  9. trollebror

    Favorite Anime Show?

    Bakajaro-konojaro!
  10. trollebror

    Standing on Quest Chests!!!

    Are you sure those chests you can stand on have a unique ID aswell?
  11. trollebror

    New Map Editor

    First time checking out OTClient...WTF is this sorcery! I feel ashamed for not trying out the client before today. Looks so awsome, contains login screen sound and runs so smooth you can see the butter drip down your screen. Love it! :w00t: - - - Updated - - - Sidenote: while using the...
  12. trollebror

    Błąd przy kompilacji TFS 0.5 na Debianie 6.0

    This is a english speaking forum, please stick to it! ;)
  13. trollebror

    CTF[Capture The Flag]

    Read this post by Cronox. Post here again if you don't understand what to do.
  14. trollebror

    A action to crash the server

    If you tell me why you want it. :)
  15. trollebror

    Teleport Tile

    Yes sir!
  16. trollebror

    Teleport Tile

    It's in milliseconds. So 1000 = 1sec, 5 * 1000, = 5sec. So if you want 5 minutes you would: 5 * 60 * 1000 = 5min delay = 5 * 60 * 1000,
  17. trollebror

    Action ghettobird's MARIJUANA SCRIPT!

    Looks sweet ghettobird, though I would like to promote the power of tabing! Just a tip. :)
  18. trollebror

    Teleport open when Event starts Script?

    You are meant to edit the green code, here we go: globalevent.xml <globalevent name="spawnGhazbaran" interval="7200000" script="spawnGhazbaran.lua"/> spawnGhazbaran.lua local config = { createTeleportPos = {x = 980, y = 433, z = 8}, teleportToPos = {x = 984, y = 431, z = 8}...
  19. trollebror

    Teleport Tile

    Thanks, corrected. :)
  20. trollebror

    Teleport Tile

    The green code is meant to be edited by you, here we go: movements.xml <movevent event="StepIn" uniqueid="21101" script="delayed_teleport_tile.lua"/> <movevent event="StepOut" uniqueid="21101" script="delayed_teleport_tile.lua"/> delayed_teleport_tile.lua local config = { storage =...
Back
Top