• 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. Codex NG

    Complaint WTF?

    What is this? Trolling? Are you serious? Lol, you have got to be kidding me, I was not trolling I was pointing out that $300 is an insult to offer people for the work he wants done.. Are you people blind.. have you not seen the state of other threads.. I can give you several threads where...
  2. Codex NG

    Solved get/has attributes doesn't seem to be working. TFS 1.2/3

    I ran a for loop over all the attributes on a target. local x = { ITEM_ATTRIBUTE_NONE, ITEM_ATTRIBUTE_ACTIONID , ITEM_ATTRIBUTE_UNIQUEID , ITEM_ATTRIBUTE_DESCRIPTION , ITEM_ATTRIBUTE_TEXT , ITEM_ATTRIBUTE_DATE , ITEM_ATTRIBUTE_WRITER , ITEM_ATTRIBUTE_NAME ...
  3. Codex NG

    CreatureEvent Orb Siphoning - New Looting Method - TFS 1.3/Otx3 - 8.6/10.98

    Based on Deathzot, looting method and from what I am told a script Archlight has recently added to their servers (see thats how much I play ot servers :p Orb looting, its basically an orb which spawns after you kill a creature and you stand on it and collect the loot, gold or experience. A...
  4. Codex NG

    God account on TFS 1.3 + premium, via sql

    If you are testing a server locally and just looking to create a new account without having to setup an AAC, these 2 sql queries will do that for you. This is just to help you speed up your work flow :) The username and password is 1/1. 1st thing you want to do is create the account, go into...
  5. Codex NG

    Programming Logic

    I got a pm from someone recently, they had shown me a script they are trying to write, I gave them a brief opinion and they made the changes then they showed me the code and I have not responded. It's not just enough when creating new concepts or systems for your server to just copy and paste...
  6. Codex NG

    Staff for a day...

    I am sure we all have at one point or another had our own ideas about what we would do if we were a staff member on this forum. So what would you do to clean up this forum and make it a better place? Please give in detail your reason for taking such action.
  7. Codex NG

    Is it time for new blood?

    I think its time we got rid of some of these "staff" members.. you hardly ever see them anywhere on the forums anymore unless its to remove a thread and pm you a warning... I won't mention any names ninja...:rolleyes:
  8. Codex NG

    Bye :)

    Since @Xikini is leaving I am leaving too... You will have to fend for yourselves, this community seems to get worse and worse year after year.. not because of people like myself.. hell if it wasn't for people like me, this community would have gone belly up long ago. You people refuse to...
  9. Codex NG

    Free Online Gif Animator

    Found this halfway decent online gif animator. http://gifpaint.com/ However hehe... almost the entire functionality is client side.. how do i know this? Well I was able to reconstruct the entire page including sub directories, js, css and other files :) It really isn't that hard to do either.
  10. Codex NG

    CreatureEvent 0.3.6 - 0.4 - onKill - Frag Reward + Ip check + Level Threshold

    local level = 10 function onKill(cid, target, lastHit) if (isPlayer(cid) and isPlayer(target)) then if (getPlayerLevel(cid) + level) < getPlayerLevel(target) then if getPlayerIp(cid) ~= getPlayerIp(target) then local create = doPlayerAddItem(cid, 7369, 1)...
  11. Codex NG

    TalkAction TFS 0.3.6 - 0.4 Town Teleport Fix

    local towns = { -- place the temple position of each town [{1, 'yalahar'}] = {x = 0, y = 0, z = 0}, [{2, 'carlin'}] = {x = 0, y = 0, z = 0}, [{3, 'thais'}] = {x = 0, y = 0, z = 0} } function getTowns(search) for town, templePosition in pairs(towns) do if isInArray(town...
  12. Codex NG

    Spell TFS 1.2 - Alah Akbar! * BOOMMMM

    Original script. https://otland.net/threads/alah-akbar-boommmm.240810/ local combat_arr = { [1] = AREA_CROSS1X1, [2] = AREA_CIRCLE2X2, [3] = AREA_CIRCLE3X3 } local times = {1, 500, 1000} local dmin, dmax = 10, 10 local combat = {} -- keep empty local monsters = true -- true or...
  13. Codex NG

    Action 8.6 - Desert Quest (Vocation Quest) - switch

    You will need to fill out the coordinates and items needed, of course this script could be used for other purposes as well. -- table based on base vocations local p = { [1] = { --sorcerer player = { position = {x = 0, y = 0, z = 0}, toPos = {x = 0, y = 0, z =...
  14. Codex NG

    MoveEvent 0.3.6 - 8.6 - Custom Equipment with stat attributes, based on vocation.

    This script will allow you to assign stat attributes to equipment which normally don't have stats or bonuses based on the player's vocation. Written for cryingdamson-0.3.6-8.60-V8.2, but I am sure it will work for 0.4 as well. Save this in data\movements\scripts\ as equipmentWithStats.lua --...
  15. Codex NG

    How to upload an image and post it on a forum.

    Done!
  16. Codex NG

    TFS 1.x Series Interface Explanations

    I will be using 1.0, 1.1 & 1.2 for this tutorial/explanation. Since there is no proper documentation for this anywhere, this will be it. First let me say this so its out of the way, an interface is not a function in the sense that we know of like add(2, 2) = 4, no it is a mechanism which...
  17. Codex NG

    Spell TFS 1.2 Conjure Rune/Ammo Etc..

    So what this does is, it will allow you to basically conjure anything you specify, this is a spell not a talkaction. function aOrAn(word) local vowels = {'a', 'e', 'i', 'o', 'u', 'x'} return isInArray(vowels, word:sub(1, 1):lower()) and 'an '..word or 'a '..word end local spells = {...
  18. Codex NG

    Marvel Trading Cards

    I was just talking to someone about when I was young I use to collect and sell baseball and comic book cards. Marvel Universe Series 1 Spiderman Marvel Universe Series 2 I think this is 3 I really don't remember... I am sure there were other marvel trading series cards after that, I just...
  19. Codex NG

    Web editor...

    I think something like this is what we need inside of those AAC's, of course this editor is primitive in looks but complex in functionality :) At the moment it doesn't store or retrieve data from a database (but it will), I haven't added that in yet, I have other plans for it as well.. I am...
  20. Codex NG

    My Request

    People use code tags, people indent code... maybe even people learn to code? Nah that's pushing it.
Back
Top