• 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

    [Paid] Events, Quests, Maps.

    I was really referring to the price of scripts, not all scripts are written in an hour, some take more than a day to write some take a week, what kind of money are looking to spend? Lets talk numbers, I like numbers =)
  2. Codex NG

    [Paid] Events, Quests, Maps.

    Ok, so what is ridiculous and what is reasonable? Because what you find ridiculous might be reasonable to us same thing what you find reasonable might sound ridiculous to us.
  3. Codex NG

    problem to use my no-ip domains to connet to my server

    When you setup a no-ip dns it can take anywhere between 30 minutes to 24 hours for the system to update, the more you mess with the settings the longer it takes... so if you have 1 setup that works, use that and then don't touch it for at least a day. If you still have issues contact no-ip's...
  4. Codex NG

    error timer event creaturescript onDeath tfs 0.3

    <event type="death" name="LootEventDeath" event="script"><![CDATA[ domodlib('Loot_func') function onDeath(cid, corpse, deathList) if not isCreature(cid) then return false end local creature = nil for _, x in pairs(deathList) do if...
  5. Codex NG

    Action TFS 1.x Potions System : Percents and Summons!

    I could update this script, I just don't have the time right now. :(
  6. Codex NG

    Help with spell formula

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HOLYAREA) local area = createCombatArea(AREA_CIRCLE3X3) setCombatArea(combat, area) function getCombatFormulas(cid, level, magicLevel) local...
  7. Codex NG

    C++ Game.getClientVersion()

    You sure that is correct @Printer? ipairs can't iterate over non-numeric indexes and it most certainly won't index over numeric indexes which exceed the range/size of the table. I think that was a clerical error :p unless... Game.getClientVersion() has numeric indexes?
  8. Codex NG

    C++ Game.getClientVersion()

    unpack = _VERSION == 'Lua 5.1' and unpack or table.unpack print( unpack( Game.getClientVersion() ) )
  9. Codex NG

    Parsers for 1.2

    Got some more tools now too :) Their just not public, but also they probably are of no use to anyone either lol
  10. Codex NG

    Send item back to owner Auction System

    This is bad if(result:getID() ~= -1) then Should be, if and only if result is userdata if(result and result:getID() ~= -1) then If its a table then if(result and next(result) then if result:getID() ~= -1 then If we don't know what result is we can always use type print( type( result ) )
  11. Codex NG

    Solved Raids with day and hour. [TFS 1.3]

    Please mark this thread as solved, thanks :)
  12. Codex NG

    Lua Battlefield Event [latest TFS]

    forgottenserver/events.h at b79d74fda22e61720818a8f1ceb9acb69103b04f · otland/forgottenserver · GitHub forgottenserver/events.cpp at b79d74fda22e61720818a8f1ceb9acb69103b04f · otland/forgottenserver · GitHub
  13. Codex NG

    Parsers for 1.2

    Yea the items parser can be used for anything, movements, actions, pretty much anything which is xml in tfs.
  14. Codex NG

    Lua Autoloot for Ultravip instead of premium players

    050-function is fine, I do have a service for this type of stuff, see my signature. Yes I am charging now a days for scripts, I think I've earned that right. ;)
  15. Codex NG

    Lua everything works perfectly, except...

    Re-write it? Please mark this thread as solved, thanks :)
  16. Codex NG

    Help with talkaction script

    Alright well you will need to rewrite the execution of the script, I know you don't know how to do that but I really don't have the time to be doing it for you, maybe someone else can help you or maybe you can try your hand at it yourself, a real simple way is the to use print, print each value...
  17. Codex NG

    Lua everything works perfectly, except...

    I see this a lot lately people defining conditions inside of an interface, this is a poor programming practice to develop. Conditions should be defined outside of the interface and then referenced when used by x method/interface. un_table is not included in this script, i would imagine it is a...
  18. Codex NG

    Lua Autoloot for Ultravip instead of premium players

    Lets just change the script. Add this to your function.lua. -- yes I am running out of names for things :p function getPlayerStatus(cid) if isPremium(cid) then return true elseif getPlayerVipDays(cid) > 0 then return true end return false end Replace your old...
  19. Codex NG

    Lua Battlefield Event [latest TFS]

    I tried this, this doesn't work in 1.3, not sure if it worked in 1.2, because I did write a script which did change the player's outfit in 1.2
  20. Codex NG

    AAC ZNOTE Shop

    Yes, internally well you would need someone with php knowledge, but its better to do it as an item in game and list it on the website as an item for sale. The name unlock would be an issue since you can't login with a locked character. As an alternative you could just have a player interact with...
Back
Top