Jump to content
Sign in to follow this  
mariogt16

Admiral cloak

Recommended Posts

function custom_cha_timer(role, freq, time)
 

    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 == 7990 and cha_type == 1 then
        local statelv = 1
        local statetime = 3600
        AddState ( role , role , STATE_CAPE1 , statelv , statetime )
        
    elseif Cape_id == 7990 and cha_type == 2 then
        local statelv = 1
        local statetime = 3600
        AddState ( role , role , STATE_CAPE2 , statelv , statetime )        

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

    elseif Cape_id == 7990 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

end
function cloak.lua(filename,text)
   local file = GetResPath('script/extension/database/cloak/'..filename..".txt")

  if(fileexists(file) ~= false) then
    
    LogFile = io.open(file,'a')
    LogFile:write("["..os.date().."]/t"..text.."/n")
    LogFile:close()
    end    
    
end

 

what the fuking error ? need add hooks or what ? 

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.

Sign in to follow this  

×
×
  • Create New...