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

    Selling Closed

    Bump
  2. Ancores

    Selling Closed

    No one but you had access to your account, not even I had. So you probably have a keylogger or something.
  3. Ancores

    Selling Closed

    bump!
  4. Ancores

    Selling Closed

    134 Sorcerer sold!
  5. Ancores

    Selling Closed

    These are all I have
  6. Ancores

    Selling Closed

    Bump
  7. Ancores

    Selling Closed

    Items on Lunara sold!
  8. Ancores

    Selling Closed

    70 Paladin sold!
  9. Ancores

    Selling Closed

    Items on Selena sold!
  10. Ancores

    Selling Closed

    95 Paladin sold!
  11. Ancores

    Selling Closed

    Close this
  12. Ancores

    test hall tp script help

    I'm not an annoying retard Yours wouldn't work because of - getPlayerAcces(cid) and most people here doens't understand what the problem is even if it is one letter missing, that's why I posted the "exact" same script. Now I just saw another typo, CONT_ME_TELEPORT So here is the exact same...
  13. Ancores

    A script to make a item permanent in backpack, and undropable

    Or... items.xml <attribute key="movable" value="0" />
  14. Ancores

    Item and lever = getplayerteleport

    function onUse(cid, item, fromPosition, itemEx, toPosition) local id, itemPos, newPos = 8976, {x=800, y=678, z=7}, {x=100, y=100, z=7} local i = getTileItemById(itemPos, id).uid if(i > 0) then doRemoveItem(i) doTeleportThing(cid, newPos) doSendMagicEffect(getThingPos(cid)...
  15. Ancores

    When i level 20 i get a reward. Requests.

    Creaturescript <event type="advance" name="LevelReward" event="script" value="levelreward.lua"/> login.lua registerCreatureEvent(cid, "LevelReward") levelreward.lua function onAdvance(cid, skill, oldlevel, newlevel) if(skill == SKILL__LEVEL and getPlayerStorageValue(cid, 41024) ~= 1 and...
  16. Ancores

    When i level 20 i get a reward. Requests.

    function onAdvance(cid, skill, oldlevel, newlevel) if(skill == SKILL__LEVEL and getPlayerStorageValue(cid, 41024) ~= 1 and newlevel >= 20) then setPlayerStorageValue(cid, 41024, 1) doPlayerAddItem(cid, 2160, 2) doCreatureSay(cid, "Congratulations " .. getCreatureName(cid) .. ", you have...
  17. Ancores

    test hall tp script help

    function onSay(cid,words,param) doTeleportThing(cid,{x=1018,y=912,z=7}) doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_BLUE,"Test Hall.") doSendMagicEffect(getThingPos(cid),CONT_ME_TELEPORT) return true end <talkaction log="yes" access="5" words="/testhall" event="script"...
  18. Ancores

    changing what city i live in

    function onStepIn(cid, item, position, fromPosition) local townId = 1 doPlayerSetTown(cid, townId) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are the newest resident of " .. getTownName(townId) .. ".") return true end
  19. Ancores

    Compare table values problem

    I have a table like this: { 1000, 5000, 3000, 1000, 4000, -- The numbers are different everytime the script runs. 5000, 1000, 3000, 5000, 1000, 5000, 5000, 1000, 4000, 2000 } If [1], [4] and [7] has the same value I want to add +1 to variable something and if [1], [4], [7] and [10] has...
  20. Ancores

    Lua OnLook?

    If you want to change it you have to do it in sources, if you want to add something you can do it in lua with doPlayerSetSpecialDescription(cid, desc)
Back
Top