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

    Ask me anything and I'll do my best to answer...

    As the title says, ask me anything. Only rule: Can't google about it. It's like google without google. ;) Do your worst!
  2. dragaoart

    TFS 1.0 or 0.3, 0.2...

    As a matter of fact, despites the progress on enhancing the program, the community seems to stick with "older" versions of TFS. But even those versions (<=0.3) shows a continued development by the community. New functions, mods, actions appears everyday for the old versions, as the newer (1.0)...
  3. dragaoart

    Programmer Looking for a webdeveloper to create a spinoff from Znote AAC

    Hello my friends, I'm currently on a pre-development phase to create a spin-off from Znote's AAC. The goal is to create a full MVC standarized software, release it as an Open Source application along with Znote's at github. Znote's software still is the best AAC in my humble opinion, but in...
  4. dragaoart

    [Concept] Dynamic Maps

    Hello all, I'm a web developer and OT enthusiastic. Today I'm presenting you a concept for discussion: Dynamic Generated Maps. Dynamic Maps Dynamic maps are maps generated by the server, based on a map template, that will be allocated in the server memory for Raid-like events. This concept...
  5. dragaoart

    Lua Experience Potion

    local bronze = 1 * 60 * 60 * 1000 -- 1 hour local prata = 2 * 60 * 60 * 1000 -- 2 hour local ouro = 4 * 60 * 60 * 1000 -- 3 hour function onUse(cid, item, frompos, item2, topos) if item.itemid == 10614 then doRemoveItem(item.uid,1) doPlayerSetExperienceRate(cid,2)...
  6. dragaoart

    Lua Experience Ring TFS 0.3.5 PL1

    Hello! I'm trying to run this code: exp_ring.lua function onEquip(cid, item, slot) doTransformItem(item.uid, 10612, 1) doPlayerSendTextMessage(cid, 22, 'Now you have 2x extra experience!') doPlayerSetExperienceRate(cid, 2) return TRUE end function onDeEquip(cid, item, slot)...
  7. dragaoart

    Lua Blue Legs Quest (part 1)

    This is the part 1 of the script. The script I'm using is: actions.xml <action actionid="7522" script="bluelegs/koshei_lever.lua"/> <!-- first floor of the quest after gather amulet --> koshei_lever.lua Credits: Maxi/Shawak Annihilator 1.0 local coffinPos = {x = 33273, y = 32458, z...
  8. dragaoart

    Lua Blue Legs Quest (script doesn't work)

    Hello all! (thank you all for reading XD..) I have a problem when using a third party scripts for OTS Distro: TFS 0.2.3. The scripts are not 100% as the owner have said. The Scripts I'm using are the following (or this link): movements.xml<!-- Koshei the Deathless - Entrance) -->...
Back
Top