• 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!

Search results

  1. Ramirow

    TFS 1.X+ Clean Area

    I think this could work out, if it does, you add or remove as many items as you want in itemIds variable. local area = { fromPos = {x = , y = , z = }, toPos = {x = , y = , z = } } local itemIds = {1987, 18390, 2420, 2253, 3058, 3059, 3060, 1988, 2269, 2308, 2273, 2262, 7620, 2293...
  2. Ramirow

    Playerdeath.lua? or something else

    Post the solution so people with similar issues find the answer, thanks n_n
  3. Ramirow

    Solved NPC Repair equipment

    You're welcome buddy! Keep on working on that server, I want to play it :eek: cheers!
  4. Ramirow

    Solved NPC Repair equipment

    Hmmm..Try this one out? XD local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local charge_price = 50 -- preço por carga em gps. function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid)...
  5. Ramirow

    Action Advanced quest chests 1.x

    Look at the example quest: questChests = { --------------------------------------------------------- -- Example Quest Box 1 --------------------------------------------------------- [2100] = { minLevel = 7, items = { [1] = {type = "item", item = 2160, count...
  6. Ramirow

    [Error - TalkAction Interface]

    that's not the script that is giving you the error, if you read closely it points out that the error happens on: data/talkactions/scripts/guildwar.lua
  7. Ramirow

    Solved NPC Repair equipment

    if getItemAttribute(getPlayerSlotItem(cid, CONST_SLOT_LEFT).uid, "Durability") ~= nil then Could be yeah, try that line, replacing all the same ones in the ifs
  8. Ramirow

    Simple Script

    This: function onStepIn(creature, item, position, fromPosition) if creature:isMonster() then creature:remove() end return true end
  9. Ramirow

    Solved NPC Repair equipment

    This one? I'm trying to check if item has the SLOT Durability assigned, which I suppose that if it doesn't it means that it's a virgin item. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {}...
  10. Ramirow

    [Error - TalkAction Interface]

    Yeah, post the script and when does the error pop up, let's say, what is the command that makes this error show up
  11. Ramirow

    [Error - TalkAction Interface]

    It would be nice if you told us Server Version, and which guild war system you're using
  12. Ramirow

    Solved NPC Repair equipment

    I don't know how the system works in detail, but try this, blind try, if it doesn't work I will read the whole system. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local charge_price =...
  13. Ramirow

    Solved NPC Repair equipment

    Post the updated script you get the repair working, will try to add a check so it does not count virgin items
  14. Ramirow

    Door max level 20 enter!

    Your thanks are more than enough for me bro n_n enjoy! Merry christmas and Happy New Year :D
  15. Ramirow

    Solved NPC Repair equipment

    Let me get this straight, if you repair one by one it works ok? The issue happens when saying repair all right? It only repairs left hand and stops. Any errors on console? Does the npc say this line after saying him 'repair all'? "Okay, i've fixed your damaged weapon."
  16. Ramirow

    Door max level 20 enter!

    There, edited it again, should only let players lvl 20 or under enter.
  17. Ramirow

    Door max level 20 enter!

    Oh dude, you are missing a lot of things if that's the full script.. Try this one: function onUse(cid, item, frompos, item2, topos) local reqLevel = 20 if getPlayerLevel(cid) <= reqLevel then pos = getPlayerPosition(cid) if pos.x == topos.x then if...
  18. Ramirow

    Door max level 20 enter!

    Post the full script please
  19. Ramirow

    Door max level 20 enter!

    Which error?
  20. Ramirow

    NPC Task Problem

    Could you post the full creature and npc scripts? Also tell us which version you're using
Back
Top