View Full Version : Xenobot Gold changes to Platinum
Ghostlider
06-12-2013, 11:26 AM
Is it possible to make a script or it's somewhere in settings to press gold coins to change them for platinum like it's on most of the OTS'S sorry for my English Cheers mates
nachoo123
06-12-2013, 11:29 AM
This is not possible on the real servers of Tibia.
In order to change Gold to Platinum you have to speak to a bank-guy and change it over there.
Ghostlider
06-12-2013, 11:41 AM
K i got it, but dunno where to paste it or something ..
And I've no idea why my walker doesnt work it seem's like there's no option (round-robin) u have to go same way back and add waypoints ?
function useCoins(id)
local cont = Container.GetFirst()
while (cont:isOpen()) do
for spot = 0, cont:ItemCount() do
local item = cont:GetItemData(spot)
if (item.id == id) then
if (item.count == 100) then
cont:UseItem(spot, True)
sleep(500)
return true
end
end
end
cont = cont:GetNext()
end
return false
end
while (true) do
useCoins(3031)--gold
sleep(500)
useCoins(3035)--platinum
sleep(500)
end
Zythox
06-12-2013, 12:40 PM
I think u mean something like this?
function useCoins(id)
local cont = Container.GetFirst()
while (cont:isOpen()) do
for spot = 0, cont:ItemCount() do
local item = cont:GetItemData(spot)
if (item.id == id) then
if (item.count == 100) then
cont:UseItem(spot, True)
sleep(100)
return true
end
end
end
cont = cont:GetNext()
end
return false
end
while (true) do
useCoins(3031)--gold
sleep(500)
useCoins(3035)--platinum
sleep(500)
end
eliaking022
07-20-2013, 09:49 PM
Thanks a lot Zythox. It works perfectly!
Jimadorsito
06-24-2015, 02:23 AM
Thanks u this work ! (:
Benya91
07-01-2015, 12:16 AM
unction useCoins(id)
local cont = Container.GetFirst()
while (cont:isOpen()) do
for spot = 0, cont:ItemCount() do
local item = cont:GetItemData(spot)
if (item.id == id) then
if (item.count == 100) then
cont:UseItem(spot, True)
sleep(100)
return true
end
end
end
cont = cont:GetNext()
end
return false
end
while (true) do
useCoins(3031)--gold
sleep(500)
useCoins(3035)--platinum
sleep(500)
end
doesn't work :(
Y2Quakepc2
07-01-2015, 12:51 AM
doesn't work :(
function useCoins(id)
local cont = Container.GetFirst()
while (cont:isOpen()) do
for spot = 0, cont:ItemCount() do
local item = cont:GetItemData(spot)
if (item.id == id) then
if (item.count == 100) then
cont:UseItem(spot, True)
sleep(100)
return true
end
end
end
cont = cont:GetNext()
end
return false
end
while (true) do
useCoins(3031)--gold
sleep(500)
useCoins(3035)--platinum
sleep(500)
end
Benya91
07-01-2015, 11:34 AM
function useCoins(id)
local cont = Container.GetFirst()
while (cont:isOpen()) do
for spot = 0, cont:ItemCount() do
local item = cont:GetItemData(spot)
if (item.id == id) then
if (item.count == 100) then
cont:UseItem(spot, True)
sleep(100)
return true
end
end
end
cont = cont:GetNext()
end
return false
end
while (true) do
useCoins(3031)--gold
sleep(500)
useCoins(3035)--platinum
sleep(500)
end
Thanks mate <3
heheh
01-08-2016, 12:30 AM
but where should i write this? :/
salama
01-08-2016, 12:34 AM
but where should i write this? :/
Just past in a text and put in xenobot ,scripts
kosiuco
01-26-2016, 07:38 PM
thanks! worked perfectly!
leojba
04-08-2016, 09:13 PM
For who does not know how to use it so XenoBot paste in the Scripts folder and run the tibia.
meloud
08-05-2016, 03:34 AM
good job
guiller
11-16-2016, 02:45 AM
valeu
guiller
11-16-2016, 02:51 AM
valeu
Schneeider
12-05-2016, 04:47 PM
would u guys do this with Gold Converter ? the tibia coin item of globals
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.