• 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

    Lua Battlefield Event [latest TFS]

    About the outfit thing, outfits aren't really a condition like manashield or a stat attribute they can be overwritten by the player using the outfit window. I don't know if this is intended behavior or a bug. Unless someone knows a way to suppress this?
  2. Codex NG

    Help with talkaction script

    I switched the if statements, you should receive a message at the very least. -- CONFIGURAÇÕES aurastr = 25950 -- storage da aura estr = 25951 -- storage para o exhaust porcentagem = 40 -- chance de curar em cada volta da aura, em porcentagem quantheal = 10 -- porcentagem do hp máximo que cada...
  3. Codex NG

    Mapper Looking for mapper

    Wish I knew how to map.. sigh
  4. Codex NG

    ACC Page - which one?

    ? Yes there is a difference, and I wasn't being rude I was being humorous, learn the difference please.
  5. Codex NG

    Creating Captain Kurt for Desinty Island

    If you have errors, always post the errors, screenshot or even copy and paste will do but put the errors in code tags.
  6. Codex NG

    ACC Page - which one?

    Why would you care what I would prefer.. I could be some lunatic...
  7. Codex NG

    C++ compiling TFS old with MVS 2015

    This error might be obvious to you but it isn't obvious to the person looking for help. This error is not directly linked to the TFS sources, its an STL error, why not just provide the solution and leave the attitude at the door? I did some digging and according to this. VS 2015 Update 2 ·...
  8. Codex NG

    ACC Page - which one?

    Take your pick. GitHub - DevelopersPL/DevAAC: DevAAC for TFS 1.0 GitHub - Znote/ZnoteAAC: Developement repository for the Znote AAC project. A website portal to represent and manage your Open Tibia server. GitHub - gesior/Gesior2012: Gesior 2012 - Account Maker [website] for OTSes, account maker...
  9. Codex NG

    Remere's Map Editor 3.3

    I ran make -j `nproc` And that froze my whole system :( Weird too o@o ~ $ nproc --all 8
  10. Codex NG

    Remere's Map Editor 3.3

    Now if only the hotkeys would work on linux :( none the less thanks for the contribution :)
  11. Codex NG

    Help with talkaction script

    I cleaned it up and removed some stuff but you also had a - at the top of the page I am surprised you didn't get an error for that. -- CONFIGURAÇÕES aurastr = 25950 -- storage da aura estr = 25951 -- storage para o exhaust porcentagem = 40 -- chance de curar em cada volta da aura, em...
  12. Codex NG

    Lua Autoloot for Ultravip instead of premium players

    I commented where i made the changes with "i added it here" I'll explain how i made the changes. I looked for OnlyPremium and found info.OnlyPremium then placed ultravip = true, below OnlyPremium = true and then replaced if info.OnlyPremium == true and not isPremium(cid) then with this...
  13. Codex NG

    Lua Tables (where to insert them)

    I did not know that ;)
  14. Codex NG

    C++ 7.6 and older tibian systems

    Um.. code tags and indentation? Now its more readable ifdef __LearnSpellx__ int ActionScript::luaActionLearnSpell(lua_State *L){ //Learnspell(Spellname?) int cid = (int)lua_tonumber(L, -3); //this is the creatureid of player i guess const char* words = Item->getDescription()...
  15. Codex NG

    Lua Tables (where to insert them)

    If your server has a global file you can place your tables anywhere in there, if not then take @slawkens's advice, however with his you need to include the file it doesn't automatically load. dofile loads files into whatever or where ever its called dofile('path to file') Some people will tell...
  16. Codex NG

    Lua Tables (where to insert them)

    global.lua
  17. Codex NG

    Permanent Magic Shield [TFS 1.2]

    If you don't have isInArray for whatever reason function isInArray(a, f) for k, v in pairs(a) do if v == f then return true end end return false end
  18. Codex NG

    Permanent Magic Shield [TFS 1.2]

    Take all of this and set it outside of onLogin local manashield = Condition(CONDITION_MANASHIELD) manashield:setTicks(-1) Then inside of onLogin you place something like this. if isInArray({1}, player:getVocation():getId()) then player:addCondition(manashield) end That {1} is a table, place...
  19. Codex NG

    Gesior on other Server

    Why would you setup the aac on a webhost? You can setup everything on the ot's host, all you have to do is point the dns to the ot server's ip. You don't even need a dns, but its there to add to the illusion.
  20. Codex NG

    Send item back to owner Auction System

    Before you call a method on an userdata/table you should always check if the object is not nil. The only 2 values which are considered false is false and nil... everything else is considered true. It doesn't matter if its an empty string/table, negative number or even 0, if you evaluate it by...
Back
Top