• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. tarjei

    unashammed scammer three times!

    Yeah but you gotta face reality Snake, I LOST MY CHILDHOOD thinking that developers here on otland are decent people :V Now it turns out that people are leeching from frorum but they are given by example from the top shelf^^ Reading the thread I have a big laugh and feel a big pitty at once. I...
  2. tarjei

    [Lib] Serializing and Deserializing many values into/from single storage value.

    MULTI STORAGE LIBRARY Hello, fellows. Today I bring you the most awesome thing I could think of about storage values. I was really annoyed by using many separete storage values to hold information in single event. If you have ever heard about packets you, it work exactly like that. It...
  3. tarjei

    Enpec's [RPG MAPPING]

    Your pieces are very tasty. When I watch them I would love to watch all day xD But seriously they are preety detailed and look like a boss : ) ! Keep it up :D
  4. tarjei

    Nice events on your server?

    Heh I guess you are partialy right. But you can always be better, thats why if you learn by making stuff - even try to learn people - and you are willing to do it for free, then you can become better. I spent many hours to make stuff to open sourced projects but there are many ppl that spent...
  5. tarjei

    [Lua] Using metamethods in practice. Introduce to OOP in lua.

    It uses Snakes thread :D function FuncQueue:new() local obj = {} obj.funcs = {} obj.currentId = 0 obj.isPaused = false; obj.runningId = 0 self.__index = self setmetatable(obj, self) return obj end function FuncQueue:addFunction( func,delay, ...) self.funcs[self.currentId + 1] =...
  6. tarjei

    Lua Searching for a movement that activate every time I walk

    implement onMove event. Unless its already implemented XD
  7. tarjei

    Simple Trap System

    I guess we could make thing that will make possible to detect the mine. Like its in rpgs-> There is some try that will give you a chance to see it. ^^
  8. tarjei

    unashammed scammer three times!

    Awesome, really touchy.
  9. tarjei

    unashammed scammer three times!

    Or maybe a blonde? XD
  10. tarjei

    unashammed scammer three times!

    Lol isnt that obvious? He is from Poland, ppl there are sometimes such N.I.C.E and "SMART" and SO fuc**ing CLEVER. Honestly guys, I suggest you all to check if person you are buying anything through paypal isnt from Poland. I guess we are all here s00 greedy in here that I have no comment to...
  11. tarjei

    Nice events on your server?

    Sadly I agree with snake... Anyway there is another thing that concerns me.. I like your market site, I really do. But I think that things you are selling is terribly bad written ( I assume that after I downloaded package that Ifate release and read a code). I belive you are selling your time...
  12. tarjei

    Go inside portal - Becomes level 1|Go outside becomes original level|Save-Load level!

    Step 1. Set action id on portal. Step 2. Make a movement script and save all data into storagevalues .. (it can be saved with using less but I guess you wont be able to make that though) Step 3. Set level and all skills to begin thing. Step 4 Make another portal that will read those storages...
  13. tarjei

    15 levers...

    With function I wrote all he has to do is edit his array a bit. local leverspos = { {{x=32846, y=32318, z=12},leverid ,1} {{x=32874, y=32334, z=12},leverid ,1} {{x=32886, y=32337, z=13},leverid ,1} {{x=32887, y=32330, z=12},leverid ,1} {{x=32843, y=32359, z=12},leverid ,1} {{x=32850...
  14. tarjei

    15 levers...

    Check my thread about ItemChecking >.<
  15. tarjei

    Problem lua traceback

    if (isPlayer(thing.uid) ~= cid and getPlayerStorageValue(thing.uid, storage) > 0) then Ok here is your problem isPlayer(thing.uid) returns boolean value (true or false) so it is never equal to creature id (so it will let script execute further) you should remove ~= cid so it looks like if...
  16. tarjei

    ItemCheck -> Checking if items are on specific positions. Have fun with it xD

    The best way of using it is to paste the code to libs (or some global file) then you can easily create make calls to it from each script ^^ Then you just do like in example XD - - - Updated - - - Added sample function.
  17. tarjei

    ItemCheck -> Checking if items are on specific positions. Have fun with it xD

    I used it in some quest I belive , can't remember XD However it can be used as a simple function if you write one :)
  18. tarjei

    Locating items in player equipment by action id.

    Hi, recently I discovered my old function wich I was excited about when I was newbie in scripting. It was parsing tree of backpacks that locates items by specific actionid you give to function. I was so annoyed by unprofesionality of this code that I rewrote this and release it now to public...
  19. tarjei

    [MOD] Rush Event / Team Battle with scores

    Actualy this is how this world works.. You should use to it.. If those what iFate posted are your events you are selling im sorry to say that but they are poorly written, its hard to edit anything beacosue its a mess.. I wonder how you find yourself in this mess XD
  20. tarjei

    Tibia Editor 9.6 Discussion Thread.

    There is no estimated time of this tool to be finished to be honest. For now there is no activity, me nor Fallen are working on it (I didnt notice his activity on git) Im working on it when Im bored, Im not creator of this tool , however I might redevelope it soon so it has all essential...
Back
Top