Signup Now
Results 1 to 3 of 3
  1. #1
    Free User sylomex's Avatar
    Join Date
    Dec 2013
    Location
    France
    Posts
    369
    Reputation
    39
    Rep Power
    22

    Im killed every night on all my char by the same guy

    Hi people,

    Im getting killed every night by the same guy on all my characters.
    So im comming to you to have some help about one hotkey.

    It need to check my VIP list and if this guy is ON then going to a label.

    I did a try with .isonline and .notify buy i cant make it work :/

    Thanks to everone !

  2. #2
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,820
    Reputation
    220
    Rep Power
    27
    something like this should work:
    init start       
    local namesConsider = {'bad guy'}

    table.lower(namesConsider)
    init end

    auto(500)
    if table.find({'hunting section', 'hunting section 2 .. etc if needed'}, $wptsection) then
    foreach vipentry v do
    if table.find(namesConsider, v.name:lower()) and v.isonline then
    gotolabel('somelabel')
    end
    end
    end

  3. #3
    Free User sylomex's Avatar
    Join Date
    Dec 2013
    Location
    France
    Posts
    369
    Reputation
    39
    Rep Power
    22
    ok thanks mistgun i know why it wasnt working.

    I wasnt using the "foreach vipentry v do"
    so it wasnt looking into my vip list

    Thanks dude Rep for ya !

 

 

Posting Permissions

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