Signup Now
Results 1 to 8 of 8
  1. #1
    Free User
    Join Date
    Mar 2014
    Posts
    16
    Reputation
    10
    Rep Power
    0

    Post Shoot wild growth runes

    Hellos guys

    Shoot grav vita in front of me or in xyz location someone got it?

    can you help me?

    @Leonardo @Lucas Terra @RoxZin xD @BUgWT @Dworak


    thank for all guys!

  2. #2
    Free User Diaxy's Avatar
    Join Date
    Jul 2014
    Posts
    1,091
    Reputation
    94
    Rep Power
    22
    init start
    local WildGrowth = 2130 -- id of rush wood
    local shootPosx = $posx+1 -- This is east
    local shootPosy = $posy-1 -- This is north
    init end

    auto(200)
    if topitem(shootPosx, shootPosy, $posz).id ~= WildGrowth and itemcount("wild growth rune") > 0 then
    useitemon("Wild Growth Rune", 0, ground(shootPosx, shootPosy, $posz))
    wait(300,500)
    end

  3. #3
    Free User
    Join Date
    Mar 2014
    Posts
    16
    Reputation
    10
    Rep Power
    0
    than you brother


    try using me but it did not work because the cursor is always open and will not let me throw the avalanche, this what I'm looking for sio in roshamuul me and luring my knigth
    @Diaxy
    Last edited by Gnsislove; 09-26-2014 at 12:08 AM.

  4. #4
    Free User Diaxy's Avatar
    Join Date
    Jul 2014
    Posts
    1,091
    Reputation
    94
    Rep Power
    22
    You should add it to action with rune AVA shooter, instead of using targeting.
    I can add extra conditions to my action but I think better solution I gave above.
    Last edited by Diaxy; 09-26-2014 at 06:22 AM.

  5. #5
    Free User
    Join Date
    Jul 2014
    Posts
    1
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Diaxy View Post
    init start
    local WildGrowth = 2130 -- id of rush wood
    local shootPosx = $posx+1 -- This is east
    local shootPosy = $posy-1 -- This is north
    init end

    auto(200)
    if topitem(shootPosx, shootPosy, $posz).id ~= WildGrowth and itemcount("wild growth rune") > 0 then
    useitemon("Wild Growth Rune", 0, ground(shootPosx, shootPosy, $posz))
    wait(300,500)
    end
    Hello i need shot South East Help me?

  6. #6
    Free User
    Join Date
    Feb 2015
    Posts
    9
    Reputation
    10
    Rep Power
    0
    can anyone modify this to shoot directly behind where you are facing?

  7. #7
    Free User
    Join Date
    Feb 2015
    Posts
    9
    Reputation
    10
    Rep Power
    0
    Can anyone modify this to shoot directly behind where you are facing?

    Quote Originally Posted by xaliesmastah View Post
    Hello i need shot South East Help me?
    If you edit:
    init start
    local WildGrowth = 2130 -- id of rush wood
    local shootPosx = $posx+1 -- This is east
    local shootPosy = $posy-1 -- This is north
    init end
    to this:

    init start
    local WildGrowth = 2130 -- id of rush wood
    local shootPosx = $posx+1 -- This is east
    local shootPosy = $posy+1 -- This is south
    init end

  8. #8
    Helper StaR's Avatar
    Join Date
    Dec 2013
    Location
    Manchester
    Posts
    712
    Reputation
    50
    Rep Power
    22
    Quote Originally Posted by somalianpirate View Post
    Can anyone modify this to shoot directly behind where you are facing?



    If you edit:


    to this:
    This will do it all the time, so only enable it when you need it, you might be best adding it as a standard hotkey where you need to press a key for example 'PgUp' to activate it.
    init start
    local WildGrowth = 2130 -- id of rush wood
    init end

    auto(200)

    if $self.dir == 'n' then
    Location = {x = $posx, y = $posy+1} -- south
    elseif $self.dir =='e' then
    Location = {x= $posx-1, y = $posy} -- west
    elseif $self.dir == 's' then
    Location = {x = $posx, y = $posy-1} -- north
    else
    Location = {x = $posx+1, y = $posy} -- east
    end

    if topitem(Location.x, Location.y).id ~= WildGrowth and itemcount("wild growth rune") > 0 then
    useitemon("Wild Growth Rune", 0, ground(Location.x, Location.y, $posz))
    wait(300,500)
    end



 

 

Posting Permissions

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