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

    Skinning knife like in WoW.

    May I get reputation? :)
  2. WarOfTheTitans

    UH that heals %

    Yea, I have seen it too. You should use the search bar more often, but here it is it anyway: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat...
  3. WarOfTheTitans

    Lua Advanced Quest Chest Help

    try this :) function onUse(cid, item, fromPosition, itemEx, toPosition) local items = { item_1 = {{2520,1}, {6140}, {100}}, -- Manaruneitemid, count, storage, level item_2 = {{2466,1}, {6141} {200}} } if(getPlayerStorageValue(cid, items.item_1[2]) < 0) then if(getPlayerLevel(cid)...
  4. WarOfTheTitans

    Skinning knife like in WoW.

    It seemed nice so I made the script and parsed it with the ordinary obsidian knife. Keep in mind that the obsidian knife has old corpses! So here you are :) function onUse(cid, item, fromPosition, itemEx, toPosition) local SKINS = { -- Minotaurs [2830] = {25000, 5878}, [2871] = {25000...
  5. WarOfTheTitans

    Limos's Mapping Thread

    Wow, It looks very nice! ;D
  6. WarOfTheTitans

    WarOfTheTitans - Mapping Thread (Teaser)

    Wow very nice ! I will try to make an improvement now and edit my post later ! :D Here is the improvement: and an extra picture! :D Wand quest! :D
  7. WarOfTheTitans

    WarOfTheTitans - Mapping Thread (Teaser)

    Bump! :D Fishing up something special and very usable item in game from the tar! - I don't know what border I should use around the tar, suggestions? :d
  8. WarOfTheTitans

    Earth Mountain Remeres Mod

    You could use this mapeditor; http://otland.net/f19/rme-mapeditor-8-6-edited-149242/
  9. WarOfTheTitans

    Kill monster

    Oh, very nice ! :D What does "unpack" mean? :/ still learning xd
  10. WarOfTheTitans

    Updat Query Login

    function onLogin(cid) db.query("UPDATE `players` SET `status` = '1' WHERE `id` = " .. getPlayerAccountId(cid) .. ";") return 1 end try this
  11. WarOfTheTitans

    Kill monster

    function onDeath(cid, corpse, deathList) local reward = { -- Choose your 8 items {2160, 1}, -- Item, count {2173, 3} } if(isMonster(cid)) then local c = math.random(#reward) doAddContainerItem(corpse.uid, reward[c][1], reward[c][2]) end return true end Register it in login.lua...
  12. WarOfTheTitans

    Problem with Target Lock on my Ot

    config.lua: stopAttackingAtExit = true
  13. WarOfTheTitans

    Windows Global Message

    why in npc files? Its in globalevents/broadcast.lua (something)
  14. WarOfTheTitans

    mana up help

    No, you don't say? What the hell did I just mention about the movements.xml? .. That means that the item is registered.
  15. WarOfTheTitans

    mana up help

    I didn't mention that he didn't have to change anything in items.xml. I said that he have to change in movements.xml if the item is not already registered. The item must be registered in order to give the player the 20%+ mana.
  16. WarOfTheTitans

    starting items

    That's not it... You are probably using the Crying Damson (Otswe)'s 0.3.6. That distribution has a bug in sources that makes the player drop item if the server is giving it the player. I would recommend you to change distribution to continue your otserver. :)
  17. WarOfTheTitans

    mana up help

    It's not only changing the items.xml, you have to change in movements.xml to let it give the attributes I think. Forexample like this: <movevent type="Equip" itemid="7892" slot="feet" event="function" value="onEquipItem"> <vocation id="1"/> <vocation id="5" showInDescription="0"/>...
  18. WarOfTheTitans

    Solved Clone items?

    Ot-Stuffs got a point there because it's true about what he is saying, to not download, edit, run. If you are going to d server, make it properly. But one thing that can happen is that if you change/remove something from sources it may effect another thing and whole thing is going to crash. Ot...
  19. WarOfTheTitans

    [Evan] Latest Mapping !

    Very nice! ;D
Back
Top