Rifbot Tibia74 ORG

 


Hello,

Updated Rifbot for Tibia74 ORG, download

13 comments:

  1. Replies
    1. Hello,

      I fix ids in next patch, please now use lua script: https://github.com/Ascerr/Lua-Scripts/blob/master/Fishing%20Kasteria.lua

      Ids for waters tiles should be this {617, 618, 619, 620, 621}

      Delete
  2. thanks !!!
    hey and the other issue its the platinium coin dont stack. so when convert gold to platinum dont put together
    can you fix it or have a lua script to stack the platinium coin?

    ReplyDelete
    Replies
    1. Use last rifbot version i added this option to autolooting due bug in game.

      Delete
  3. hey in Medivia Game
    I wanted a script that clicks as quickly as possible on the coins that drop on monsters, but with them inside the monsters, without having to pull them into the backpack, the amount of coin that drops doesn't matter

    ReplyDelete
    Replies
    1. Hello,

      This script, but you need set valid config and enable option:
      local COLLECT_GOLD_TO_POUCH = true
      https://github.com/Ascerr/Lua-Scripts/blob/master/Gold%20Changer.lua

      Delete
    2. if item.count == 100 or COLLECT_GOLD_TO_POUCH then
      I need it to use any amount and not just 100, I need it to convert any variable from 1 to 100 gp

      Delete
    3. Please think before you write, this line is correct.

      Delete
    4. yes, this line is correct but not for what I need, this line makes the script only use it if it is 100g, I need it to use ANY amount for example (17gp, 76gp), any amount and not only if it is = 100

      Delete
    5. II managed to change the line
      if item.count == 100 or COLLECT_GOLD_TO_POUCH then
      from to
      if item.count <= 100 or COLLECT_GOLD_TO_POUCH then
      <3

      Delete
    6. ^^ if item count == 100 or COLLECT_GOLD_TO_POUCH means that if item have < 100 gp it check for second argument if pouch is enabled :)

      Delete