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

    Compiling Problems

    you didn't understand it, but you also didn't realize you downloaded 0.3.7 sources
  2. Cykotitan

    Solved Mysql Unknown column player

    import it :w00t:
  3. Cykotitan

    Compiling Problems

    is this 0.3.7? Subversion according to this, it uses openssl md5 includes so it's no longer bundled with TFS source files, make sure you have openssl installed, assuming you're using codeblocks
  4. Cykotitan

    Erase creaturesss

    left click & del button
  5. Cykotitan

    Lua Creature Storage - quite complex enquiry

    this now goes before the onCastSpell function: local function run(thing, left) if isCreature(thing) then doSendMagicEffect(getThingPos(thing), 7) if left == 1 then doChangeSpeed(thing, 130) else addEvent(run, 500, thing, left - 1) end end end the rest of your code: local thing =...
  6. Cykotitan

    Otland master legend has returned once again

    better stop advertising grammar nazi site and draw something ye ye
  7. Cykotitan

    Gamemaster access talkactions?

    i said type, not group_id
  8. Cykotitan

    Gamemaster access talkactions?

    TFS 0.2? try account type 5
  9. Cykotitan

    Solved Mysql Unknown column player

    stop using the wrong schema all the time Subversion
  10. Cykotitan

    Solved SQLite Error; No such colum HELP!

    just add the column etc:p and stop using sqlite
  11. Cykotitan

    Follow Chris Hansen NBC

    this is most inadequate behavior for a sir such as yourself, Ney
  12. Cykotitan

    MoveEvent Teleport Online!

    thou hath chosen a path of cancer, my little apprentice
  13. Cykotitan

    Solved [Solved] Modernacc page

    kan u pls stahp trolin us wit
  14. Cykotitan

    Alienware has arrived

    what are your intentions on using this fine piece of hardware for, sir?
  15. Cykotitan

    HDMI problems

    make sure the connector is pushed all the way in, and as always update drivers
  16. Cykotitan

    Unknown Error

    if you're going to test it manually, then whitelist your ip and submit a proper request btw you're missing the paypal ip "173.0.81.1"
  17. Cykotitan

    Npc Minor Crystalline Tokens instead of Gold coins

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local config = { token = {2345, 5}, reward = {2345, 1} } function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end...
  18. Cykotitan

    Stay at the same level

    maybe he only wants the level to reset? doPlayerAddLevel(cid, 260 - getPlayerLevel(cid), true)
  19. Cykotitan

    Lua Wondering about a function.

    yes, until there's no stones left you can set a global storage and then refuse to perform action if it's set if getStorage(1234) == 1 then return doPlayerSendCancel(cid, 'your text') end -- later in the code doSetStorage(1234, 1)
  20. Cykotitan

    Lua Wondering about a function.

    local stonePos = { {x=1234,y=1234,z=7}, {x=1235,y=1234,z=7}, {x=1236,y=1234,z=7}, {x=1237,y=1234,z=7} } local i = 0 while i < #stonePos do i = i + 1 local stone = getTileItemById(stonePos[math.random(#stonePos)], stoneId).uid if stone ~= 0 then doRemoveItem(stone) break...
Back
Top