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

    how to make the action id a certain fixed item?

    It was helpful. The error stopped appearing. Strangely, I wasn't being able to use your script alongside the function, the action ID simple wouldn't be added. But I did through this script: function onUse(cid, item, fromPosition, itemEx, toPosition) if item.uid == 1003 then...
  2. FilipeJF

    how to make the action id a certain fixed item?

    Sorry if I'm reviving this topic. But i'm trying to use this script, but I always receives the following error: [Error - Action Interface] data/actions/scripts/bauquests/chavemorte.lua:onUse Description: data/actions/scripts/bauquests/chavemorte.lua:5: attempt to call global 'doSetItemActionId'...
  3. FilipeJF

    Lua Spell problem TIBIA 860 Distro Crying Damson

    Now i get this [Error - Spell Interface] In a timer event called from: data/spells/scripts/attack/ninja.lua:onCastSpell Description: data/spells/scripts/attack/ninja.lua:47: attempt to index local 'target' (a number value) stack traceback: data/spells/scripts/attack/ninja.lua:47: in...
  4. FilipeJF

    Friend trying to use my OTclient with sound but getting no SOUND

    So! First of all. I have a OTclient that I've added some systems, like sound system for music and translated some things. I remember that a long time ago, when using the same client, I had some problems with DLL's, but now I haven't. But as I passed the client to my friend with a pendrive and he...
  5. FilipeJF

    Lua Where can I change the Pool "OF" water?

    So, I wish to translate my server. But this part is really getting to me: like, where can I change the "of" word of "pool "OF" blood"?
  6. FilipeJF

    Lua Spell problem TIBIA 860 Distro Crying Damson

    So, I think that this function is not avaible in my server. I've checked the entire list of functions, and GetPlayerId isn't avaible also. Is there any other function that could work with this? KABUUUUUUUUUMP
  7. FilipeJF

    Lua Spell problem TIBIA 860 Distro Crying Damson

    Hello! First of all, thank you for taking your time for helping me. But as I tried to use a spell, an error appeared: [Error - Spell Interface] data/spells/scripts/attack/ninja.lua:onCastSpell Description: data/spells/scripts/attack/ninja.lua:66: attempt to call global 'getCreatureId' (a nil...
  8. FilipeJF

    Lua Function for verifying weapon type equipped?

    Thank you ma friend! Now I can do very interesting shit in my server. I hope this can help more people with their servers.
  9. FilipeJF

    Lua Function for verifying weapon type equipped?

    function getItemWeaponType(uid) local thing = getThing(uid) if(thing.itemid < 100) then return false end return getItemInfo(thing.itemid).weaponType end
  10. FilipeJF

    Lua Function for verifying weapon type equipped?

    Unfortunately, my config.lua does not have get Player Weapon and that error is the unique thing that appears. Looks like the function searchs for a "weapolntype id" but cant find it, so it generates the error. That happens with empty hands and random items.
  11. FilipeJF

    Lua Function for verifying weapon type equipped?

    Thats really helpful! What global lua is that? WAIT NEVERMIND It worked! Thank you very much indeed! Finally one more step concluded here. Thank you brother! WAIT error at DISTRO: I mean, its working, but when I have no weapon this error appears. Is there a workaround? Error - Spell...
  12. FilipeJF

    Lua Function for verifying weapon type equipped?

    First of all, thank you both for the answers. I have expressed myself pretty bad. But I what I truly want is, for example: If the player has a Fire Sword or any other kind of SWORD equipped, Only then he will be able to cast a spell. So, the spell is kinda locked with the sword item type. If...
  13. FilipeJF

    Lua Function for verifying weapon type equipped?

    Is there any function in Crying Damson 0.3.6 that can verify the kind of weapon the player is currently equipped with? I did a research around the internet and I've found some interesting ones: ((getPlayerSlotItem(cid, 6).itemid == ID de todos os itens do tipo) or (getPlayerSlotItem(cid...
  14. FilipeJF

    Lua Spell problem TIBIA 860 Distro Crying Damson

    I'm a very slow person, so I'm not getting this to work. Tried to do the same as the Misterious guy, but not being any successfull. Can anybody help me replace the new funtions? Please!
  15. FilipeJF

    Lua Spell problem TIBIA 860 Distro Crying Damson

    First of all, I would like to thank Printer for the spell he posted in the post below: https://otland.net/threads/ninja-vocation-spells.223635/ So, that's the script: function isWalkable(cid, pos) local tile = Tile(pos) if not tile then return false end if...
  16. FilipeJF

    Problem with spell Tibia 0.3.6 Crying Damson

    I've posted in the wrong area I'm really stupid delete
  17. FilipeJF

    Problem with action script

    Thank you and sorry being the tipical stupid guy that does not read the rules. It worked.
  18. FilipeJF

    Problem with action script

    The script is working. I click on the thing and it just works, as Todd Howards would say, but it also bugs something that I don't understand since I have very limited scripting skills. This is the error I get at the distro: [Error - Action Interface] In a timer event called from...
  19. FilipeJF

    Force 860 version when opening

    Hello! I'm using a script to hide the version, ip and port selection in the main menu of the game, so I need to find out how to force the client to open with 8.60 version in another PC (because when someone downloads my client with the script of hiding the 'selection' menu, it resets to 10.74)...
  20. FilipeJF

    How to use fog system OTClient 0.6.3

    I'm trying to use, but nothing is happening. Is there some kind of tutorial?
Back
Top