Jump to content
DarkRulez

Help with Admiral Cloak

Recommended Posts

like the tittle say i need help with the admiral cloak i cant make it work i have no idea to where add it in functions.lua

 

sorry for my bad english

Share this post


Link to post
Share on other sites

Put it inside cha_timer in functions.lua:

Spoiler

    local cha = TurnToCha ( role ) 
    local cha_type = GetChaTypeID ( cha )
    local Cape_bg = GetChaItem ( role , 2 , 4  )
    local Cape_id = GetItemID ( Cape_bg )
    
    if Cape_id == 9205 and cha_type == 1 then
        local statelv = 1
        local statetime = 3600
        AddState ( role , role , STATE_CAPE1 , statelv , statetime )
        
    elseif Cape_id == 9205 and cha_type == 2 then
        local statelv = 1
        local statetime = 3600
        AddState ( role , role , STATE_CAPE2 , statelv , statetime )        

    elseif Cape_id == 9205 and cha_type == 3 then
        local statelv = 1
        local statetime = 3600
        AddState ( role , role , STATE_CAPE3 , statelv , statetime )        

    elseif Cape_id == 9205 and cha_type == 4 then
        local statelv = 1
        local statetime = 3600
        AddState ( role , role , STATE_CAPE4 , statelv , statetime )        
    else
        local statelv_cape1 = GetChaStateLv ( role , STATE_CAPE1 )
        if statelv_cape1~=0 then
            RemoveState ( role , STATE_CAPE1 ) 
        end
        local statelv_cape2 = GetChaStateLv ( role , STATE_CAPE2 )
        if statelv_cape2~=0 then
            RemoveState ( role , STATE_CAPE2 ) 
        end
        local statelv_cape3 = GetChaStateLv ( role , STATE_CAPE3 )
        if statelv_cape3~=0 then
            RemoveState ( role , STATE_CAPE3 ) 
        end
        local statelv_cape4 = GetChaStateLv ( role , STATE_CAPE4 )
        if statelv_cape4~=0 then
            RemoveState ( role , STATE_CAPE4 ) 
        end
    end

 

Share this post


Link to post
Share on other sites

@DarkRulez put cloak funtion under this:

function cha_timer(role, freq, time) 
	local resume_freq = 5 
	local now_tick = GetChaParam(role, 1) 
	local is_role_living = -1

	SetChaParam(role, 1, now_tick + freq * time) 
	--hp回复
	if math.mod(now_tick, resume_freq) == 0 and now_tick > 0 then 
	JianYuKa(role ,now_tick)
	ZhongShenTaoZhuang(role,now_tick)
		if is_role_living == -1 then
			is_role_living = IsChaLiving(role)
		end
		if is_role_living == 1 then 
			Resume(role)
		end 
	end
-----Here put cloak function

 

  • Like 1

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...