Signup Now
Page 30 of 65 FirstFirst ... 20282930313240 ... LastLast
Results 291 to 300 of 647
  1. #291
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,819
    Reputation
    220
    Rep Power
    29
    Quote Originally Posted by Simona View Post
    how can i put so it use what pick is?
    Code:
    useitemon(9598), 0, ground($wptx+1,$wpty,$wptz)) wait(500,1000)
    for example here 9598 is the id for whacking driller of fate, i want it to auto determine what item pick is in cavebot/settings

    Use function:

    pick(x,y,z)


    it'll use pick from cavebot->settings:

  2. #292
    Free User
    Join Date
    Mar 2014
    Posts
    61
    Reputation
    10
    Rep Power
    23
    Code:
    useitemon(pick), 0, ground($wptx+1,$wpty,$wptz)) wait(500,1000)
    so this will determine what setting i have on pick( I have whacking driller of fate) and use it?

  3. #293
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,819
    Reputation
    220
    Rep Power
    29
    just use this what i wrote. it will check what pick You have in settings

  4. #294
    Free User
    Join Date
    Mar 2014
    Posts
    36
    Reputation
    10
    Rep Power
    0
    I need something like this. The character must logout when reach a certain spot (not when have low stamina), must log in with a different account and pass, and above all, must, if the script is running by the charnumber1, reconnect to charnumber2, if, otherwise, it is running by the charnumber2, reconnect to charnumber3 and so on and so forth.

  5. #295
    Free User CroiX's Avatar
    Join Date
    Jan 2014
    Posts
    889
    Reputation
    61
    Rep Power
    24
    Quote Originally Posted by Simona View Post
    Code:
    useitemon(pick), 0, ground($wptx+1,$wpty,$wptz)) wait(500,1000)
    so this will determine what setting i have on pick( I have whacking driller of fate) and use it?
    You can use JUST this
    pick($posx + 1, $posy, $posz)


    or if u wanna use your own, use
    useitemon($pick, 0, ground($wptx+1,$wpty,$wptz)) 
    wait(500,1000)

    ---

    Quote or Tag me if you want me to reply quicker


  6. #296
    Free User CroiX's Avatar
    Join Date
    Jan 2014
    Posts
    889
    Reputation
    61
    Rep Power
    24
    Quote Originally Posted by danielcb View Post
    I need a hotkey to choose the amount of sds to attack and also to choose spell hunting or sd hunting.. what i want is that if i chose spell hunting my char use exori frigo, exori gran frigo and sd at 3 monsters or more, and if i choose sd hunting, my char only atk with pure sds, without spells, is that possible?XD

    @danielcb haven't tried, but should work I guess -

    init start

    local MONSTERS = {"Rat", "Cave Rat", "Bug"} -- add whatever monster u want
    local SDmin = 3 -- min amount to use SD
    local OnlySD = true -- or false, or make a getuseroption.

    init end

    -- DO NOT EDIT ANYTHING BELOW THIS LINE

    auto(200)
    if OnlySD then
    for _, v in ipairs(MONSTERS) do
    setsetting('Targeting/Creatures/' .. v .. '/Setting1/FirstSpell', 'Sudden Death Rune')
    setsetting('Targeting/Creatures/' .. v .. '/Setting1/SecondSpell', 'No Spell')
    end
    elseif (maround(8, unpack(MONSTERS)) < SDmin) and (not OnlySD) then
    for _, v in ipairs(MONSTERS) do
    setsetting('Targeting/Creatures/' .. v .. '/Setting1/FirstSpell', 'Strong Ice Strike')
    setsetting('Targeting/Creatures/' .. v .. '/Setting1/SecondSpell', 'Ice Strike')
    end
    elseif (maround(8, unpack(MONSTERS)) >= SDmin) and (not OnlySD) then
    for _, v in ipairs(MONSTERS) do
    setsetting('Targeting/Creatures/' .. v .. '/Setting1/FirstSpell', 'Sudden Death Rune')
    setsetting('Targeting/Creatures/' .. v .. '/Setting1/SecondSpell', 'No Spell')
    end
    end
    Last edited by CroiX; 04-10-2014 at 11:52 PM.

    ---

    Quote or Tag me if you want me to reply quicker


  7. #297
    Wind Powered
    Join Date
    Mar 2014
    Posts
    18
    Reputation
    10
    Rep Power
    0
    Pick up X items from the floor

  8. #298
    Free User CroiX's Avatar
    Join Date
    Jan 2014
    Posts
    889
    Reputation
    61
    Rep Power
    24
    Quote Originally Posted by tedred View Post
    Pick up X items from the floor
    KK, just made this, haven't tried, but should work.

    init start

    local item = 'Magic Plate Armor' -- item to pick up
    local BP = 'Backpack of Holding' -- BP to move item onto

    init end
    -- DO NOT EDIT BELOW

    local Item = itemid(item)

    auto(200)

    reachgrounditem(Item)
    waitping(1,2)
    moveitems(Item, BP, ground(), 100)
    waitping()
    Last edited by CroiX; 04-12-2014 at 04:01 PM.

    ---

    Quote or Tag me if you want me to reply quicker


  9. #299
    Free User
    Join Date
    Feb 2014
    Posts
    135
    Reputation
    11
    Rep Power
    23
    I need a hotkey that using exana mort and exana pox after all ghastlys dead, would appreciate that

    Regards

  10. #300
    Free User CroiX's Avatar
    Join Date
    Jan 2014
    Posts
    889
    Reputation
    61
    Rep Power
    24
    Quote Originally Posted by Niices View Post
    I need a hotkey that using exana mort and exana pox after all ghastlys dead, would appreciate that

    Regards
    auto(200)
    if maround(7, 'Ghastly Dragon') == 0 then
    if $poisoned then cast('exana pox')
    elseif $cursed then cast('exana mort')
    end
    end


    Will cast exana pox and exana mort when all ghastlys are dead IF you are poisoned/cursed.

    ---

    Quote or Tag me if you want me to reply quicker


 

 

Posting Permissions

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