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

    A question about outfits

    Can someone tell me how the outfit system works in global tibia? I retired before addons were added so I dont know much. Is it possible to get first or second addons of an outfit without having the base outfit? For example, if I bring Cael a tribal crest(without having the base outfit and...
  2. Gsp

    [France] CsTibia Public Beta 1.0, Custom Client&map

    hahaha nice work
  3. Gsp

    Remove Item

    local barrierpos = {x=1000, y=1000, z=7} local barrier2pos = {x=1000, y=1000, z=7} local ITEMID = ITEM function onSay(cid, words, param) if getTileItemById(barrierpos, ITEMID).uid < 0 then doCreateItem(ITEMID, 1, barrierpos) doCreateItem(ITEMID, 1, barrier2pos) doBroadcastMessage("MSG") end...
  4. Gsp

    Blessed characters downgrades to level 1.

    in your config file check these -- Blessings -- NOTE: blessingReduction* regards items/containers loss. -- eachBlessReduction is how much each bless reduces the experience/magic/skills loss. blessings = true blessingOnlyPremium = false blessingReductionBase = 30...
  5. Gsp

    Solved Typical "Pull lever then do add or remove item"

    yeah Limos is the master =] <3
  6. Gsp

    Solved Typical "Pull lever then do add or remove item"

    local firepos = {x=1000, y=1000, z=7, stackpos=1} function onUse(cid, item, fromPos, item2, toPos) if item.actionid == ID and item.itemid == 1945 then doCreateItem(FIREID, 1, pos) else doRemoveItem(getThingfromPos(firepos).uid) doTransformItem(item.uid,1946) end try this
  7. Gsp

    Lua Raid problem - bosses keep spawning

    yes but thats not the problem i dont want them to respawn if they are not killed <!-- executed on average once every 2 minutes <raid name="Example" file="example.xml" interval2="2" margin="0" reftype="single" ref="no"/> won't be executed again till Cave Rat gets killed...
  8. Gsp

    Solved Typical "Pull lever then do add or remove item"

    http://otland.net/threads/remove-add-stone-with-lever.18154/ change stone id wth fire field
  9. Gsp

    Lua Raid problem - bosses keep spawning

    Same problem as in http://otland.net/threads/raids-help-spawns-more-than-one-monster.83550/ Is there a way to stop it? I'm trying to create random boss spawns for demodras etc.
  10. Gsp

    Chest with Premium Points

    libs - function getAccountPoints(cid) local res = db.getResult('select `premium_points` from accounts where name = \''..getPlayerAccount(cid)..'\'') if(res:getID() == -1) then return false end local ret = res:getDataInt("premium_points") res:free() return tonumber(ret) end and the code...
  11. Gsp

    Chest with Premium Points

    function onUse(cid, item, fromPosition, itemEx, toPosition) if isPlayer(cid) == TRUE then db.executeQuery('UPDATE accounts SET premium_points=premium_points-10 WHERE id=' .. getPlayerAccountId(cid)) doPlayerAddItem(cid,ITEM,1) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE,"MSG") end...
  12. Gsp

    Webdesign layout site

    change the menu and it'll be really good
  13. Gsp

    Solved Npc message delay

    worked, thank you so much.
  14. Gsp

    Solved Npc message delay

    Is there a way to delay npc messages if you have them in this order? npcHandler:say("msg1", cid) npcHandler:say("msg2", cid, true) npcHandler:say("msg3", cid, true) npcHandler:say("msg4", cid, true) .. using 0.4 8.6.
  15. Gsp

    Checking for an offline players storage value

    yeah just tell them what you are trying to do
  16. Gsp

    account name

    which aac are you using?
  17. Gsp

    How to use the existing tibia maps through Remeres Map Editor

    im guessing it is a site to download tibia minimaps it has nothing to do with ot maps http://otland.net/forums/maps.50/
  18. Gsp

    (Request)(TFS 0.4) Loot items with random stats

    http://otland.net/threads/mod-random-item-stats.130295/ try this
  19. Gsp

    Request > script switch removes stone for x hours

    local stonepos = {x=33164, y=31671, z=13, stackpos=1} -- Stone pos function onUse(cid, item, fromPos, item2, toPos) if item.itemid == 1945 then doRemoveItem(getThingfromPos(stonepos).uid, 1) doTransformItem(item.uid,1946) addEvent(onTimer7, 30*60*1000) --30minutes...
  20. Gsp

    Solved Rings,amulets,boots stop working on login

    thanks Limos you are the best i searched for doRemoveConditions(cid, false) and found one line on team battle event changed it to doRemoveConditions(cid) problem solved. <3
Back
Top