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

Recent content by zetibia

  1. zetibia

    OTC Developer

    Hello community, I'm looking for someone with skills to create all current tibia global content for otclient. Anyone willing and available, please contact me.
  2. zetibia

    Infinite exercise wapon

    Try this code, add the id of the infinite items into the "infinityWeapons" table: local skills = { [32384] = {id=SKILL_SWORD,voc=4}, -- KNIGHT [32385] = {id=SKILL_AXE,voc=4}, -- KNIGHT [32386] = {id=SKILL_CLUB,voc=4}, -- KNIGHT [32387] = {id=SKILL_DISTANCE,voc=3,range=CONST_ANI_SIMPLEARROW}, --...
  3. zetibia

    [TFS 1.X] Battlefield Event (4 teams version)

    I think the outfit part should be done through a script. Maybe choose the condition option to set a standard outfit, so nobody can change it while at the event.
  4. zetibia

    OTU - OpenTibiaUnity - A new TibiaClient based on Unity3D engine

    I downloaded OTU, but after downloading tried all the ways to make it work, I couldn't, always returns the following message "Couldn't load appearances for version". So I went to the function that checks and realized that there is a check if there is a "sprite" file in the directory. However in...
  5. zetibia

    Tibia 11-12+ Packet Sniffer (RL & OT)

    Great job.
  6. zetibia

    Lua Deathlist killer name

    What version of TFS you are using?
  7. zetibia

    Calling lua function in C++

    You could create a command just to update your table. If you can not query your table, it is because you are not importing it into your files. To do this you should add it next to these tables: https://github.com/otland/forgottenserver/blob/master/data/lib/core/core.lua
  8. zetibia

    Tfs 1.2 LoopCount Error

    You need to verify that the creature exists. Something like if not Creature(target) then return false end in the scripts that will be executed in the future (addEvent). local function sendHealingEffect(cid, position, loopCount) local player = Player(cid) if not player then...
  9. zetibia

    Calling lua function in C++

    Which distribution are you using? Because if the reload command is in c++ this will be tricky. Can you see if the /reload command is in talkactions.xml?
  10. zetibia

    Lua Deathlist killer name

    Try this: function onDeath(cid, corpse) local creature = Creature(cid) local damageMap = creature:getDamageMap() local str = getCreatureName(cid).." ["..getPlayerLevel(cid).."]" if(#damageMap <= 1) then str = str.." was killed by " elseif(#damageMap > 1 and...
  11. zetibia

    Good Quality server RL V12?

    Using multiple stacked players is easy?
  12. zetibia

    Good Quality server RL V12?

    Fortera-global is a failed server has reset several times, the owner is the same as the impera-global, talera among others ots. This server only opens to get as many money as possible and then resets.
  13. zetibia

    Tibia 11+ Downgrade tool

    Great job. I have been in the last 3 months trying to understand protobuf, mainly about generating classes from .proto, even reading the google documentation, and even then I could not. Could you explain how you managed to generate .cs from the .proto?
  14. zetibia

    C++ (question)Query mysql (lua or C ++) which faster?

    Is query and update by mysql faster in C ++ or luascript? Or is there no difference?
  15. zetibia

    Programmer Looking for programmer

    I am looking for a programmer capable of developing a custom client from otclient.
Back
Top