• 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

    break beetwen two different combat onCastSpell()

    function onCastSpell(creature, variant) combat:execute(creature, variant) addEvent(combat2.execute, 100, creature.uid, variant) return true end
  2. sharinn

    [TFS 8.2 - 9.x] The Forgotten Server - Oldest Tags from SVN

    File has expired and does not exist anymore on this server - please remove link to zippyshare :)
  3. sharinn

    Cannot connect to the game tfs 1.2 client 12.50 ots

    tibia 12 require special login.php file, without it you can't connect to server https://github.com/slawkens/myaac https://github.com/opentibiabr/myaac-tibia12-login
  4. sharinn

    Cannot connect to the game tfs 1.2 client 12.50 ots

    login.php(accmaker website) and config.lua (ots) have same server name??
  5. sharinn

    Lua Portal charged decay after 12 hours

    sript "opening".. 0: on use check storage timer, return if timer>os.time() 1: get item from position 2: transfor item (give this na tem as parameter to item:transform) 3: call addevent, time to execute 12h, function "transform"/item:transform(id) 4: set storage - os.time()+12h,
  6. sharinn

    C++ TFS 1.2 Disable walking trough players in protected zone

    const Tile* playerTile = player->getTile(); if (!playerTile || !playerTile->hasFlag(TILESTATE_PROTECTIONZONE)) { return false; } try chabge to const Tile* playerTile = player->getTile(); if (playerTile && playerTile->hasFlag(TILESTATE_PROTECTIONZONE)) { return...
  7. sharinn

    TFS 1.X+ Item for immunity from a monster named

    onhealchange/onmanachange function check if our amulet is in slot and attacker name, if all true changer damage to 0
  8. sharinn

    TFS 0.X Boss spawn again after 5min from first death

    ondeath function triget 2x add event, first spawn monster, second send broadcast
  9. sharinn

    Tibia 12 item editor (client 12)

    some item need to be editen in client(my noble armor), oryginal we can't pickup and move this item(clien side checks)
  10. sharinn

    OTServBR-Global 12x console error

    update database or you use wrong shema
  11. sharinn

    Lua Better way to prevent a monster from dying

    onPrepareDeath -> heal to full, its my 4 way xd
  12. sharinn

    npc spawn with chance at hour

    Try this, written from memory function onThink(interval) if math.random(10) == 1 then Game.createNpc("NPC Name", Position(150, 150, 7), false, true) end return true end
  13. sharinn

    npc spawn with chance at hour

    You put revscript to standar xml/lua style file
  14. sharinn

    Tibia 12 item editor (client 12)

    Npc price set default border color, market price can change it if we set some option 0/undefined: No frame and white text; 1 - 999: Grey 1,000 - 9,999: Green 10,000 - 99,999: Blue 100,000 - 999,999: Purple 1,000,000+: Yellow
  15. sharinn

    Visual items.xml editor anyone?

    It is different because the first version confidently edits the otbi file and the xml file and the second version only the otbi file, the xml file has different attributes than the otbi file
  16. sharinn

    TFS 1.X+ Exercise weapon don't cansle once you loggout (OTBR)

    Logout for 3s, maby you to fast relog and script between logout and login script don't triger event to check player still login
  17. sharinn

    OTServBR-Global 12x w/ Bestiary, QuickLoot and more

    What packet sniffer did you use?
  18. sharinn

    MoveEvent Tile allows sell loot (include item in container)

    How this work: throw item/bp with items on ground with special actionId(specified inside script), script will check if item exist in table, if exits will get gold assigned to this item, remove that item and add gold to player, does not remove items/bp that cannot be sold(bp and items stay on...
  19. sharinn

    TFS 1.X+ TFS 1.3 Reset character hp, mana and level to 8

    https://github.com/opentibiabr/otservbr-global/blob/develop/src/luascript.cpp player:setMaxMana(maxMana) creature:setMaxHealth(maxHealth) Unfortunately, there is no ability to set skills/mlvl using lua @Evil Puncker solution probaby is best solution, combination of talkaction and db.query will...
Back
Top