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

    TalkAction [GM] /stalk player

    This command will allow GM's to easier follow other players as they walk around the map. Usage: /stalk Colandus (enable stalking on player Colandus) /stalk stop (stop stalking) In data/talkactions/talkactions.xml add: <talkaction words="/stalk" script="stalk.lua" separator=" " /> In...
  2. Colandus

    Have Tibia Coins you don't need? Look here

    Free Tibia Coins plx 😅 I happen to have become addicted to Tibia again after many years! Now accepting free Tiba Coins to character Fiskpinne ☺️ (any amount is helpful and appreciated) Also, of course, if anyone is playing Antica, holla at me and we could have some fun together!
  3. Colandus

    mapArea iterator

    Hey. This is a revised version of my old mapArea iterator. This simplifies looping through areas. My old iterator was a bit more confusing for developers who might have wanted to edit the iterator function itself. This time it's using coroutines so the function should be very easily...
  4. Colandus

    [TFS 1.x] Run with CTRL (Advanced Version)

    Hey. This code will allow GM's to run with CTRL. It has some special features too, unlike the regular ones. Features Ghost while running. Because I believe it looks ugly and not serious to run through walls in front of regular players, and also GM's running in general (in front of players), I...
  5. Colandus

    parseAreaMap - extract positions from "map" table

    This function will convert a table like this: local areaMap = { {1,2,0,2,1}, {2,0,0,0,2}, {0,0,3,0,0}, {2,0,0,0,2}, {1,2,0,2,1} } Into this: { [1] = { {x=-2, y=-2}, {x=2, y=-2}, {x=2, y=2}, {x=-2, y=2} }, [2] = { {x=-2, y=-1}...
  6. Colandus

    Life's good

    Life's good for the bad And bad for the good
  7. Colandus

    Im an instigator

    Listen and comprehend - story of my life D12 - Instigator - YouTube
  8. Colandus

    Repeating events EASIER

    ----------------- -- By Colandus -- _CONT = {} function continue(delay, n, ...) local func = debug.getinfo(2).func if(not _CONT[func]) then _CONT[func] = true addEvent(repeatContinue, delay, func, delay, n, ...) end end function repeatContinue(func, delay, n, ...)...
  9. Colandus

    Happy birthday Colandus

    Why I don't get thread?? My birthday was yesterday FuCK U All!!!!! :mad:
  10. Colandus

    Scripter Scripts for cash

    I am willing to make any script for cash. Can also include source edits. The more complex the more pay :cool: Just taking single requests, not to be part of an OT or so.
  11. Colandus

    Kyra anyone?

    So I started playing Kyra for fun with some rls... Wondering if anyone here is playing?
  12. Colandus

    Who has char in hiberna??

    YO who here plays hiberna?!?! If you have a char in Hiberna and dont need it, gimme cash plax ?? hueahuea or if you play, gimme ur name :D
  13. Colandus

    Teleport players from area (optionally offline)

    Teleport players from a certain area to a new position... Also has the option to teleport offline players. Usage is simple: doTeleportPlayersFromArea(fromPos, toPos, newPos, offlinePlayers --[[ = false]]) set offlinePlayers to true to enable offline players teleport!! do -- Function by...
  14. Colandus

    Suggest Ideas... For the making of the best OpenTibia Server ever

    I'm in the progress of creating a magnificent, extraordinary fun, entertaining and highly addicting server. A mixture of all types; RPG/PvP-E/Fun Serv. How is that possible? Well, it's kinda tricky, but with the correct features and a fair balancedness everything is achievable. My goal with this...
  15. Colandus

    Super spell system pseudo code

    yo im about to make a spell system....... there will be several options to make spell creations muuuch easier and muuuch more effective.... way more possibilities will be available this is the part i'd like to show y'all and have comments about:: PROTOTYPE #1 -- create variables a-z and...
  16. Colandus

    Köpa hörlurar

    Budget 500kr, vill ha bra bas och ljudkvalitet!!!!!!!!!!! MUSIk mp3-spelare inte till dator :P Dessa tittade jag på: Om Koss UR40 hos Teknikmagasinet. Rekommendationer ??
  17. Colandus

    Lua for Beginners

    Okay... So I did not quite like these other beginner tutorials around here as I don't think they really describe things how it really works and not good enough. So this will be my attempt to create a more understandable tutorial that will cover pretty much everything you will need to know to...
  18. Colandus

    [Lua] Writing shorter scripts

    These are my old tutorials, that have gone through several forums and now it's time I put it here at OtLand! This tutorial is about how to write shorter scripts. I'll show you some tricks... So let's start. First of all, if we wanted variable x to be minimum 10, instead of doing this: x = 7...
  19. Colandus

    [Lua] Loops and some tricks

    These are my old tutorials, that has gone through several forums and now it's time I put it here at OtLand! This time I decided to show ya how to check areas, e.g. to check if there is a player on a 10x10 area, but then I thought that I have to learn you how to use loops first, because this...
  20. Colandus

    [Lua] Tutorials package

    These are my old tutorials, that has gone through several forums and now it's time I put it here at OtLand! I released those tutorials in the old OpenLua forum, and before it closed I saved them to my computer, too bad I didn't save the BBCode, I only saved the HTML files! Contents...
Back
Top