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?
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
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
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
Send me code please !
ReplyDeletesent!
Deletefishing dont work :C
ReplyDeleteHello,
DeleteI 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}
thanks !!!
ReplyDeletehey 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?
Use last rifbot version i added this option to autolooting due bug in game.
Deletehey in Medivia Game
ReplyDeleteI 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
Hello,
DeleteThis 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
if item.count == 100 or COLLECT_GOLD_TO_POUCH then
DeleteI need it to use any amount and not just 100, I need it to convert any variable from 1 to 100 gp
Please think before you write, this line is correct.
Deleteyes, 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
DeleteII managed to change the line
Deleteif item.count == 100 or COLLECT_GOLD_TO_POUCH then
from to
if item.count <= 100 or COLLECT_GOLD_TO_POUCH then
<3
^^ 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