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

    Lua God has 0 cap?

    The Player, need group ID 5 and Account Type 3. Are you able to use commands with him?
  2. F

    Lua How to get fluid name by type.

    You have tried getFluidSourceType(type) Don't know, if this is a newer function, but should work.
  3. F

    i wanna know if its possible to make an "if" condition based on a item name.

    Here it is... this is an action example: function onUse(cid, item, fromPos, item2, toPos) if getItemName(item.itemid) == "sword" then doCreatureSay(cid, "What you are holding there, is a " .. getItemName(item.itemid), 34) end return TRUE end
  4. F

    Starting players with items? Acc Manager..

    There is a script, in creature scripts, named first Items. Change it. And if you don't know much about lua scripting, write here again, and I will help you ;)
  5. F

    Lua Crate that gives you an random item, every hour

    There are crates in rl Tibia, that gives you an item, every 1 hour, when you click on them. I wanna use this on my server to, but I don't know, how to re-set the StorageValue of an player, if he/she is logged out. My script so far, look like this: local Items = { [1] = {2160,2}, [2] =...
  6. F

    Reset StorageValue of player, DB execute

    That is very good, and help's me in the startup script. But I want to reset the storage, of special players and not from all.
  7. F

    Reset StorageValue of player, DB execute

    I like the crates in RL Tibia, where you get an Item every hour. My problem was, that if I change the storage back via setPlayerStorage, it only works, if the player is online. So I tried to use db.querry, but it won't work :( This is my code: function back(id) --as id here, the GUID is sent...
  8. F

    Guess the age of the next poster!

    Wrong! I'm 20. Same as the next poster
  9. F

    Team Searching for: Hoster, scripter, mapper, spell-maker.

    I am well experienced in LUA scripting. If you give me a chance, I would love to try it :D
  10. F

    Team Seventh Saga Staff

    Hello, Age: 20 (12.05.1992) Location: Germany Languages: German, english Skills: I have an own server, I'm working on, but I wanna be part of something bigger, because I am the only one, working on this thing. So it takes years, to make it, what I want it to be. I am well experienced in LUA...
  11. F

    Npcsystem Error

    You have to change it in every NPC, that's selling this item, you know?
  12. F

    Market function

    Is it possible, to send up market with a function, so you can first check players vocation and then send him market. Cause I wanna put depots in starter island, but I don't wanna allow the "no vocations" to use the market. Is there way to do this?
  13. F

    Custom UH

    Here you are. Don't know if this is easiest way, to do this, because I am very unexperienced in spells. ultimate healing rune knight.lua local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT...
  14. F

    Npcsystem Error

    Yes, and there you have all the npcs, as XML datas (like Sam.xml). You have to search for the NPC, that's selling vial of oil (should be More than One, but Ahmet is One of them). There you have a line shop_buyable. Put 11 After vial of oil. Hope ist Works now :)
  15. F

    Npcsystem Error

    Ähm... in your NPC.xml? Where you you Asses The buyable Item?
  16. F

    Npcsystem Error

    If have just done it, for example <parameter key="shop_buyable" value="name of the item ,Itemid ,Price ,Subtype(for example oil is 11)"/> <parameter key="shop_buyable" value="vial of oil ,2006 ,100 ,11"/>
  17. F

    Npcsystem Error

    You have to say that there is oil in the vial :P <parameter key="shop_buyable" value="vial of oil,2006,100,11"/> If you need more liquids, look in your LIQUIDS in your doc folder, or here: LIQUIDS [ FLUIDTYPE NAME COLOR 2 blood RED 10...
  18. F

    Help fixing this script (demon helmet)

    The problem is, that the isCreature(cid) function detect's a player also as a creature, so you have to change one line: if (isCreature(creature) == TRUE) then to this if (isCreature(creature) == TRUE) and isPlayer(creature)~= TRUE then Your script works now, but it is very bad made. I have...
  19. F

    doSendAnimatedText doesn't work anymore

    Hmm, on my server, this doesn't work :/
  20. F

    doSendAnimatedText doesn't work anymore

    Haha, okay thanks :) I think, I will use creaturesay. But when an NPC adds Exp to a player, it looks stupid when I use the creatureSay function :/
Back
Top