Signup Now
Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 29

Thread: Gold Converter

  1. #11
    Free User Wesker's Avatar
    Join Date
    Dec 2013
    Posts
    462
    Reputation
    -65
    Rep Power
    0
    Quote Originally Posted by Tuba Ervax View Post
    is there a way to make the bot, auto open the "store inbox" ???
    openitem("your store inbox")
    wait(100,500)

  2. #12
    Free User
    Join Date
    Dec 2016
    Posts
    42
    Reputation
    10
    Rep Power
    0
    what about , if bp full, use gold conveter?

  3. #13
    Free User Wesker's Avatar
    Join Date
    Dec 2013
    Posts
    462
    Reputation
    -65
    Rep Power
    0
    Quote Originally Posted by Tuba Ervax View Post
    what about , if bp full, use gold conveter?
    that only works on new servers gold converter is not something you should use every single time you got a stack of 100, its not worth its price however if you stil want to do that




    auto(1000)

    local function GoldConverter(BackpackFrom, BackpackTo)
    -- BackpackFrom Where are your Gold Coins
    -- BackpackTo Backpack to move uncomplete stack
    -- Cap to use gold converter [this is how it should be used]
    local cont = getcontainer(BackpackFrom)
    local coins = itemcount(3031,BackpackFrom)

    if cont.itemcount >= 18 and coins > 100 and itemcount(23722) > 0 then
    for j=1,cont.itemcount do
    if cont.item[j].count < 100 and cont.item[j].id == 3031 then
    moveitems(3031,BackpackTo,BackpackFrom,cont.item[j].count)
    elseif cont.item[j].count == 100 and cont.item[j].id == 3031 then
    useitemon(23722, 3031, BackpackFrom)
    end
    end
    end
    if itemcount(3031,BackpackTo) > 0 then
    moveitems(3031, BackpackFrom, BackpackTo, 100)
    end
    end


    GoldConverter("Jewelled Backpack", "Zaoan Chess Box")

  4. #14
    Free User
    Join Date
    Dec 2016
    Posts
    42
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Wesker View Post
    that only works on new servers gold converter is not something you should use every single time you got a stack of 100, its not worth its price however if you stil want to do that




    auto(1000)

    local function GoldConverter(BackpackFrom, BackpackTo)
    -- BackpackFrom Where are your Gold Coins
    -- BackpackTo Backpack to move uncomplete stack
    -- Cap to use gold converter [this is how it should be used]
    local cont = getcontainer(BackpackFrom)
    local coins = itemcount(3031,BackpackFrom)

    if cont.itemcount >= 18 and coins > 100 and itemcount(23722) > 0 then
    for j=1,cont.itemcount do
    if cont.item[j].count < 100 and cont.item[j].id == 3031 then
    moveitems(3031,BackpackTo,BackpackFrom,cont.item[j].count)
    elseif cont.item[j].count == 100 and cont.item[j].id == 3031 then
    useitemon(23722, 3031, BackpackFrom)
    end
    end
    end
    if itemcount(3031,BackpackTo) > 0 then
    moveitems(3031, BackpackFrom, BackpackTo, 100)
    end
    end


    GoldConverter("Jewelled Backpack", "Zaoan Chess Box")
    gold coin in my server is 1200g its a new server...and it really worth =D

  5. #15
    Free User
    Join Date
    Dec 2016
    Posts
    42
    Reputation
    10
    Rep Power
    0
    Im mage...i dont have alot of cap, my char spam all time 'using the last gold converter, bcoz every stack of 100g it use the converter...

    it can lead me to be banned?

  6. #16
    Free User
    Join Date
    Nov 2014
    Posts
    9
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Wesker View Post
    auto(1000)

    local function GoldConverter(BackpackFrom, BackpackTo, Cap)
    -- BackpackFrom Where are your Gold Coins
    -- BackpackTo Backpack to move uncomplete stack
    -- Cap to use gold converter [this is how it should be used]
    local cont = getcontainer(BackpackFrom)
    local coins = itemcount(3031,BackpackFrom)


    if $cap < Cap and coins > 100 and itemcount(23722) > 0 then
    for j=1,cont.itemcount do
    if cont.item[j].count < 100 and cont.item[j].id == 3031 then
    moveitems(3031,BackpackTo,BackpackFrom,cont.item[j].count)
    elseif cont.item[j].count == 100 and cont.item[j].id == 3031 then
    useitemon(23722, 3031, BackpackFrom)
    end
    end
    end
    if itemcount(3031,BackpackTo) > 0 then
    moveitems(3031, BackpackFrom, BackpackTo, 100)
    end
    end


    GoldConverter("Jewelled Backpack", "Zaoan Chess Box", 190)





    If bp has 18 or more items

    Would you be able to add two more conditions into this script please?

    There should be no monsters on screen and pause walking if possible.

    Thanks,

  7. #17
    Free User Wesker's Avatar
    Join Date
    Dec 2013
    Posts
    462
    Reputation
    -65
    Rep Power
    0
    Quote Originally Posted by Zombie View Post
    Would you be able to add two more conditions into this script please?

    There should be no monsters on screen and pause walking if possible.

    Thanks,
    you can add those conditions your self its easy to do it heres an example :



    auto(1000)
    local function GoldConverter(BackpackFrom, BackpackTo)
    -- BackpackFrom Where are your Gold Coins
    -- BackpackTo Backpack to move uncomplete stack
    -- Cap to use gold converter [this is how it should be used]
    local cont = getcontainer(BackpackFrom)
    local coins = itemcount(3031,BackpackFrom)
    if cont.itemcount >= 18 and coins > 100 and itemcount(23722) > 0 then
    for j=1,cont.itemcountdo
    if cont.item[j].count<100 and cont.item[j].id == 3031 then
    moveitems(3031,BackpackTo,BackpackFrom,cont.item[j].count)
    elseif cont.item[j].coun ==100and cont.item[j].id == 3031 then
    useitemon(23722,3031, BackpackFrom)
    end
    end
    end
    if itemcount(3031,BackpackTo) > 0 then
    moveitems(3031, BackpackFrom, BackpackTo,100)
    end
    end


    if maround() == 0 and paround() == 0 then
    pausewalking(1000)
    GoldConverter("Jewelled Backpack","Zaoan Chess Box")
    end



    omg im falling sleep lol
    Last edited by Wesker; 01-07-2017 at 01:43 AM.

  8. #18
    Free User
    Join Date
    Nov 2014
    Posts
    9
    Reputation
    10
    Rep Power
    0
    @Wesker the script does not work.

    error in Persistent script NewPersistentScript:
    ["localfunction GoldConverter(Bac..."]:NewPersistentScript:2: '=' expected near 'GoldConverter'

  9. #19
    Free User Wesker's Avatar
    Join Date
    Dec 2013
    Posts
    462
    Reputation
    -65
    Rep Power
    0
    Quote Originally Posted by Zombie View Post
    @Wesker the script does not work.

    error in Persistent script NewPersistentScript:
    ["localfunction GoldConverter(Bac..."]:NewPersistentScript:2: '=' expected near 'GoldConverter'

    that was an example of how to do it lol

    i edited that example so you can copy paste it it will work if theres no players and monsters onscreen

  10. #20
    Free User
    Join Date
    Nov 2014
    Posts
    9
    Reputation
    10
    Rep Power
    0
    @Wesker why do you have to move an uncompleted stack?

    Can't you just use the gold converter on a completed stack?

    Oh and i still get the same error message

    Thanks for you help i appreciate it
    Last edited by Zombie; 01-06-2017 at 09:43 PM.

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •