View Single Post
  #5  
Old 05-08-2018, 04:48 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

I just thought this up on paper so it's untried, IE I don't know if this will work past the first kill or not...

Code:
ploop
 if onptick(1) then
    set(v1,0)
    set(v2,10)
 end
 if piskills(1) and pisteam(1) and never() then
    set(v1,1)
    set(v2,9)
 end
 if piskills(2) and pisteam(1) and never() then
    set(v1,2)
    set(v2,8)
 end
 if piskills(3) and pisteam(1) and never() then
    set(v1,3)
    set(v2,7)
 end
end
Reply With Quote