Signup Now
Results 1 to 3 of 3
  1. #1
    Free User
    Join Date
    Dec 2013
    Posts
    3
    Reputation
    10
    Rep Power
    0

    HARDCORE ML TRANING

    Hello guys,

    Someone could help me with a simple script for ml hardcore traning?

    So... I just activated my double xp/skills week and I'm traning ML by buying 1kk of Mana Potions and using them.

    The thing is... My cap is to short, so I can only carry 300 mp's. I want a script where your char use the mana potions and cast "exura vita", for exemple, AND (the most important thing) refil the mana potions (witch are on a BP on the DP) to my BP (or bag), AND put the flasks on another BP also on the DP (using, of course "open next backpack").

    To simplify: I have 2 bps on dp, one of manas and one of flasks.

    I have 10 bp's of mana potions and I'm too lazy to use them all.

    Thank you all,
    José Luiz.

  2. #2
    Free User Donatello's Avatar
    Join Date
    Dec 2013
    Location
    Tuscany, Italy
    Posts
    398
    Reputation
    51
    Rep Power
    21
    Humm, maybe this is gonna help you, mana backpacks must be one inside each other.
    init start
    local manaName = "mana potion" -- Mana name
    local dpBpName = "red backpack" -- Depot backpack that contains mana
    local mpBpName = "backpack of holding" -- Backpack to check/move manas
    local qtdToMove = 300
    init end

    auto(200)

    if itemcount(manaName, mpBpName) == 0 then
    if itemcount(manaName, dpBpName) == 0 and itemcount(dpBpName, dpBpName) > 0 then
    openitem(dpBpName, dpBpName)
    waitping()
    else
    while itemcount(manaName, mpBpName) < qtdToMove and itemcount(manaName, dpBpName) > 0 do
    moveitems(manaName, mpBpName, dpBpName, 100)
    waitping()
    end
    end
    end

  3. #3
    Free User
    Join Date
    Dec 2013
    Posts
    3
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Raph_;n618
    Humm, maybe this is gonna help you, mana backpacks must be one inside each other.
    init start
    local manaName = "mana potion" -- Mana name
    local dpBpName = "red backpack" -- Depot backpack that contains mana
    local mpBpName = "backpack of holding" -- Backpack to check/move manas
    local qtdToMove = 300
    init end

    auto(200)

    if itemcount(manaName, mpBpName) == 0 then
    if itemcount(manaName, dpBpName) == 0 and itemcount(dpBpName, dpBpName) > 0 then
    openitem(dpBpName, dpBpName)
    waitping()
    else
    while itemcount(manaName, mpBpName) < qtdToMove and itemcount(manaName, dpBpName) > 0 do
    moveitems(manaName, mpBpName, dpBpName, 100)
    waitping()
    end
    end
    end
    Well, he put the mp's on the main BP, but when mp's run out, he doesn't put the flasks on DPBP.

    And he is not pressing CTRL to move the mp's, so when the pup up shows he do nothing.

    Also, when the mana is >= 0 we should pouse the "mana treiner" and "potion healer"

    Could you help me?

    If you want I can cast for you.

    ?Thanks!

 

 

Tags for this Thread

Posting Permissions

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