Signup Now
Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 39
  1. #11
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    I just tested, focusclient () did not work.

    Anyone got any ideas?

  2. #12
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    @Raphael, any idea about what i can do?

    thx

  3. #13
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    Heck, just do

    while itemcount(sellitem.name) > 0 do
    sellitemsmarket(sellItem.name, sellItem.price, math.min(itemcount(sellitem.name), 100), true)
    wait(300, 500)
    end
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

  4. #14
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    @Raphael, see the full action:

    Action Without edit

    -- market seller
    closewindows()
    wait(500,600)
    local sellItems = {
    {name = 'hailstorm rod', price = 2950},
    {name = 'magma monocle', price = 2450},
    {name = 'blue piece of cloth', price = 1299},
    {name = 'small oil lamp', price = 140},
    {name = 'strong mana potion', price = 79}
    }

    openmarket()
    wait(200,400)
    for _,sellItem in ipairs(sellItems) do
    sellitemsmarket(sellItem.name, sellItem.price, 9999, true)
    wait(500,600)
    end
    closemarket()
    wait(500,600)



    I have to use like this?

    -- market seller
    closewindows()
    wait(500,600)
    local sellItems = {
    {name = 'hailstorm rod', price = 2950},
    {name = 'magma monocle', price = 2450},
    {name = 'blue piece of cloth', price = 1299},
    {name = 'small oil lamp', price = 140},
    {name = 'strong mana potion', price = 79}
    }

    openmarket()
    wait(200,400)
    while for _,sellItem in ipairs(sellItems) > 0 do
    sellitemsmarket(sellItem.name, sellItem.price, 9999, true)
    wait(500,600)
    end
    closemarket()
    wait(500,600)
    Last edited by KrusT; 09-26-2014 at 10:29 PM.

  5. #15
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    Just replace sellitems... with the code I pasted.
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

  6. #16
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    @Raphael, gonna test right now.

    in 5 minutes i give you a feedback

    i gonna test like this

    -- market seller
    closewindows()
    wait(500,600)
    local sellItems = {
    {name = 'hailstorm rod', price = 2950},
    {name = 'magma monocle', price = 2450},
    {name = 'blue piece of cloth', price = 1299},
    {name = 'small oil lamp', price = 140},
    {name = 'strong mana potion', price = 79}
    }

    openmarket()
    wait(200,400)
    while itemcount(sellitem.name) > 0 do
    sellitemsmarket(sellItem.name, sellItem.price, math.min(itemcount(sellitem.name), 100), true)
    wait(300, 500)
    end
    closemarket()
    wait(500,600)


    EDIT: 20:42:57 error in Action script wptid:5:
    ["while itemcount(sellitem.name) > 0 do"]:Action: 5:14 attempt to index global 'sellitem' (a nil value)
    Last edited by KrusT; 09-26-2014 at 11:50 PM.

  7. #17
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    It won't work.
    Please read carefully what I said.
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

  8. #18
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    @Raphael i read, i replaced the line take a look on my last post, i edited with the error.

    sorry, i do not understand much of bot

  9. #19
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    Replace only that line.
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

  10. #20
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    @Raphael, this? :

    -- market seller
    closewindows()
    wait(500,600)
    local sellItems = {
    {name = 'hailstorm rod', price = 2950},
    {name = 'magma monocle', price = 2450},
    {name = 'blue piece of cloth', price = 1299},
    {name = 'small oil lamp', price = 140},
    {name = 'strong mana potion', price = 79}
    }

    openmarket()
    wait(200,400)
    for _,sellItem in ipairs(sellItems) do
    while itemcount(sellitem.name) > 0 do
    sellitemsmarket(sellItem.name, sellItem.price, math.min(itemcount(sellitem.name), 100), true)
    wait(300, 500)
    end
    wait(500,600)
    end
    closemarket()
    wait(500,600)

 

 

Posting Permissions

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