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

    TFS 1.X+ saveServer() ->freezing about 3~4 seconds.

    player_items player_depotlockeritems player_depotitems why you write database tables as function? how much player play on your server, PC spec?
  2. sharinn

    TFS 1.3 clean houses of inactive players

    function onSay(player, words, param) -> function onStartup()
  3. sharinn

    Remove Skill, Level, and Magic level cap

    to fix limit i probably change this uint64_t currReqTries = vocation->getReqSkillTries(skill, skills[skill].level); uint64_t nextReqTries = vocation->getReqSkillTries(skill, skills[skill].level + 1); if (currReqTries >= nextReqTries) { //player has reached max skill...
  4. sharinn

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

    +1
  5. sharinn

    TFS 1.X+ saveServer() ->freezing about 3~4 seconds.

    when player login you can invoke event player:save() in function like this (written without checking) local function savePlayerEvent(cid, time, var) local player= Player(cid) if player then player:save() --...
  6. sharinn

    Problem with RME - Map Loader Errors ( Failed to load Houses and Failed to load Spawn)

    Have you xyz-spawn.xml and xyz-house.xml file in map folder?
  7. sharinn

    OpenTibia RME extension by krecik on dexin

    Hello, I decided to create small extension to RME client: 12.31 items.otb: opentibiabr/otservbr-global (https://github.com/opentibiabr/otservbr-global/tree/b92989e26d4a8fc70a1582c4ee2d00153a2bd04e) Number of lines of code: 5509 TODO: walls, separate library to own category(like KOD - Feyrist)...
  8. sharinn

    Making a fallen tree walkable

    Use additional "red" tille, i forgot this tile id You can download rl map and check this on tiquanda
  9. sharinn

    Advanced Weapon TFS 1.3

    Hello, its my simple weapon witch effects, should help you reach your goal :) --0 - fist - SKILL_FIST --1 - club - SKILL_CLUB --2 - sword - SKILL_SWORD --3 - axe - SKILL_AXE --4 - distance - SKILL_DISTANCE --5 - shield - SKILL_SHIELD --13 - mlvl -- param - multipler of chance function...
  10. sharinn

    change the item to another after the time is up

    Items.xml look how rings transform
  11. sharinn

    Tibia 12 item editor (client 12)

    Hello again, im look on this repos and this gunzino/tibia11-nodejs-parser (https://github.com/gunzino/tibia11-nodejs-parser/blob/master/proto/appearances.proto) and can't find color of the borders of valuable items, is the information about the border in appearancesXYZ.dat? Demon shield data...
  12. sharinn

    TFS 1.X+ Put 2 collors in message, like Img

    "normal text {dark txt}" from npc file npcHandler:setMessage(MESSAGE_GREET, "I offer {travel}...")
  13. sharinn

    Lua Function [TFS 1.3] Item abilities via Lua

    Nope, im implement my own custom item system using customattribute, healchange/manachange creaturescript, onMovedItem event, and onlook event to get description, it's like 250 line of code (i own attack attribute, all ress type, percent skill/mlvl/hp/mp condition)
  14. sharinn

    Lua Function [TFS 1.3] Item abilities via Lua

    Is it possible to upgrade to the latest version of tfs?
  15. sharinn

    Tibia 12 item editor (client 12)

    Hello, I wanted to ask a question if anyone has a client 12 editing tool, I mean items has an example: I have a noble armor (old graphics) and by default it is impossible to lift, when it changes into items.otb the possibility of lifting is still impossible, only the "/i item" command adds it to...
  16. sharinn

    Tibia Client Version [HELP]!

    opentibiabr/otservbr-global (https://github.com/opentibiabr/OTServBR-Global) in README.MD you can find link to tools(all what you need) with client 10 and 11 (tibia 12:30 cobra bastion) and other tools like obiect builder, client editor, item.otb you can find in data older Ps: sorry for my eng...
  17. sharinn

    Tibia Client Version [HELP]!

    You use client 10, sprites don't change version
  18. sharinn

    CreatureEvent onTarget Interact with Npc

    Hello it's my source code solution. PS: don't work on battle list target Combat.cpp after this if (player == target) { return RETURNVALUE_YOUMAYNOTATTACKTHISPLAYER; } add this if (target || target->getNpc()) { if (player) { SpectatorHashSet...
  19. sharinn

    Item that deals 5% more

    Hello, I have a similar script as Mr. Westwol but unfortunately lifeleach/manaleach, stops working through this script (every single moster got this creaturescripts), without this script all work fine
  20. sharinn

    otx 3.1 10.00

    Przedmioty, postaci, wywal wszystko co sie da, wstaw sam sand lub grass, zobacz czy teren nie ma jakiś innych właściwości typu pz/nonpvp itp
Back
Top