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

    change sio in two persistent

    hey, i would like to have sio for two option when is one monster 50% and when is 2 or more 60%, how i can do it buy change Persistent on/off, or maybe someone have script for that

  2. #2
    Free User
    Join Date
    Feb 2016
    Posts
    14
    Reputation
    10
    Rep Power
    0
    bump bump

  3. #3
    Moderator Dehan's Avatar
    Join Date
    Dec 2013
    Posts
    1,404
    Reputation
    315
    Rep Power
    26
    @Bombaxo sio on yourself or on friends?

    Level Latest Scripts by Dehan
    250+
    [EK & ED & MS & RP] [Navigation] Prison -1
    200+
    [EK & ED & MS] [Navigation] Asura Palace
    200+
    [EK & ED] [Navigation] Lower Roshamuul Softcore

  4. #4
    Free User
    Join Date
    Feb 2016
    Posts
    14
    Reputation
    10
    Rep Power
    0
    @Dehan on friend exura sio

    i was use this for normal sio

    Code:
    init start
    	-- local SCRIPT_VERSION = '1.0.0'
    
    	-- Friends to heal
    	local friends = {
    		'Cachero',
    		'Bubble'
    	}
    
    	local healHPPC = 100 -- Minimum HPPC to heal
    	local minHPPC = 30 -- Minimum HPPC you should have to heal
    	local minMPPC = 30 -- Minimum MPPC you should have to heal
    
    	-- DO NOT EDIT BELOW THIS LINE --
    
    	table.lower(friends)
    init end
    
    auto(100)
    
    if $hppc >= minHPPC and $mppc >= minMPPC then
    	foreach creature m 'pt' do
    		if m.hppc < healHPPC and table.find(friends, m.name:lower()) then
    			cast('exura sio "' .. m.name:lower())
    			waitping()
    			return
    		end
    	end
    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
  •