Signup Now
Results 1 to 7 of 7
  1. #1
    Free User
    Join Date
    Jan 2015
    Posts
    10
    Reputation
    10
    Rep Power
    0

    NEED ACTION (if u see player name XXX stay here/ if dont see player XXX go down)

    Need an action - ""if player EK are on battle stay here/ if no EK on battle go down" or "if u see player name XXX stay here/ if dont see player XXX go down" or go some waypoints.

    Write EK and XXX but its should be name of my knight.

    I think you will understound what I need

  2. #2
    Banned
    Join Date
    Jan 2014
    Posts
    23
    Reputation
    14
    Rep Power
    0
    HTML Code:
    local Player = {"Hickie", "Bubble"} -- Add the names to look out for here
        
    
        auto(200)
    
        if (paround(7, unpack(Player))) <1 then
        gotolabel('labelname') -- change labelname to name of waypoint before this action
        end

  3. #3
    Free User
    Join Date
    Jan 2015
    Posts
    10
    Reputation
    10
    Rep Power
    0
    Please tell me if I do it wrong

    I have only 4 waypoints - xxxxxx.JPG

    - in action 001 have write as you say my name and label name - goup
    - in action 001 have write as you say my name and label name - godown

    BUT ! its walking up/down, up/down, up/down, up/down, even my EK was up or down :/

  4. #4
    Free User TAngeL's Avatar
    Join Date
    May 2015
    Posts
    8
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by kolozombi View Post
    Please tell me if I do it wrong

    I have only 4 waypoints - xxxxxx.JPG

    - in action 001 have write as you say my name and label name - goup
    - in action 001 have write as you say my name and label name - godown

    BUT ! its walking up/down, up/down, up/down, up/down, even my EK was up or down :/
    I think you want something like this:

    in your first action:

    local Player = {"Hickie", "Bubble"} -- Add the names to look out for here
    while (paround(7, unpack(Player))) ~= 0 do
    pausewalking(2000)
    else
    gotolabel('goup')
    end


    second action:
    local Player = {"Hickie", "Bubble"} -- Add the names to look out for here
    while (paround(7, unpack(Player))) ~= 0 do
    pausewalking(2000)
    else
    gotolabel('godown')
    end


    Rickie does a persistent, not an action ok?
    Last edited by TAngeL; 05-25-2015 at 08:37 PM.

  5. #5
    Free User
    Join Date
    Jan 2015
    Posts
    10
    Reputation
    10
    Rep Power
    0
    Still didnt work

    Check this theard also https://forums.tibiawindbot.com/show...ING-FOR-KNIGHT

  6. #6
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by kolozombi View Post
    Still didnt work

    Check this theard also https://forums.tibiawindbot.com/show...ING-FOR-KNIGHT
    make 2 waypoints 1 to up and other to down and enable this persistent.

    local Player = {"Your EK"} -- Add the names to look out for here

    auto(200)

    while (paround(7, unpack(Player))) == 0 do
    gotolabel($wptid+1)
    wait(1000,2000)
    else
    pausewalking(1000*60)
    end
    Helped you? REP+

  7. #7
    Free User
    Join Date
    Jan 2015
    Posts
    10
    Reputation
    10
    Rep Power
    0
    still no working I can pay 500k if someone do it for me !

 

 

Posting Permissions

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