Signup Now
Results 1 to 4 of 4
  1. #1
    Free User
    Join Date
    Feb 2017
    Posts
    2
    Reputation
    10
    Rep Power
    0

    Stealth Ring and close Client when Player on screen.

    Hello, i need script use stealth ring and close Client when Player on screen. Please help me

  2. #2
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by wielkibot View Post
    Hello, i need script use stealth ring and close Client when Player on screen. Please help me
    auto(1000)

    local CheckPlayer = true
    local RingType = 'stealth ring'
    local HuntSections = {'Hunt'} --{'Hunt'} ... {'Floor 1', 'Floor 2'}
    local Print = true

    --===================

    if $connteced then
    if table.find(HuntSections, $wptsection) and CheckPlayer then
    if paround(10) > 0 then
    equipitem(RingType)
    end
    if Print then
    screenshot()
    end
    while $connteced do
    closeclient()
    end
    end
    end

  3. #3
    Free User
    Join Date
    Feb 2017
    Posts
    2
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    auto(1000)

    local CheckPlayer = true
    local RingType = 'stealth ring'
    local HuntSections = {'Hunt'} --{'Hunt'} ... {'Floor 1', 'Floor 2'}
    local Print = true

    --===================

    if $connteced then
    if table.find(HuntSections, $wptsection) and CheckPlayer then
    if paround(10) > 0 then
    equipitem(RingType)
    end
    if Print then
    screenshot()
    end
    while $connteced do
    closeclient()
    end
    end
    end
    Dont work.

  4. #4
    Free User Donatello's Avatar
    Join Date
    Dec 2013
    Location
    Tuscany, Italy
    Posts
    398
    Reputation
    51
    Rep Power
    21
    init start
    local safelist = {"bubble", "cachero"}
    local ringToEquip = "stealth ring"
    local sectionsToConsider = {"Hunt"}
    init end

    auto(200, 400) dontlist()
    if table.find(sectionsToConsider, $wptsection) then
    if paround() - paround(unpack(safelist)) > 0 then
    if itemcount(ringToEquip) > 0 then
    equipitem(ringToEquip, 'finger') waitping()
    end
    closeclient()
    end
    end


    Remember to change sectionsToConsider array.

 

 

Posting Permissions

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