Jump to content

Timer :3


K4stic

Recommended Posts

addEventHandler("onClientPlayerWasted", localPlayer, function(k) 
    local rx, ry = guiGetScreenSize () 
    if source ~= localPlayer then 
        return 
    end 
        if isElement(k) and getElementType(k) == "player" then 
            setCameraTarget(k) 
            setTimer(dxDrawText (  "Viewing Kill Cam of " .. getPlayerName(k) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false),6000,1) 
        end 
    end 
) 
  

Link to comment

like this?

addEventHandler("onClientPlayerWasted", localPlayer, function(k) 
    local rx, ry = guiGetScreenSize () 
    if source ~= localPlayer then 
        return 
    end 
        if isElement(k) and getElementType(k) == "player" then 
            setCameraTarget(k) 
            andEventHandler("onClientRender", root, killcam) 
            setTimer(removeEventHandler("onClientRender",6000,1,root,killcam) 
        end 
    end 
) 
  
function killcam() 
    dxDrawText (  "Viewing Kill Cam of " .. getPlayerName(k) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false) 
end 
  

Link to comment
local player 
local rx, ry = guiGetScreenSize ( ) 
  
addEventHandler ( "onClientPlayerWasted", localPlayer, 
    function ( k ) 
        if ( source ~= localPlayer ) then 
            return 
        end 
  
        if ( isElement ( k ) and getElementType ( k ) == "player" ) then 
            player = k 
            setCameraTarget ( k ) 
            addEventHandler ( "onClientRender", root, killcam ) 
            setTimer ( removeEventHandler, 6000, 1, "onClientRender", root, killcam ) 
        end 
    end 
) 
  
function killcam ( ) 
    if isElement ( player ) then 
        dxDrawText ( "Viewing Kill Cam of " .. getPlayerName ( player ) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false ) 
    end 
end 

Link to comment
local player 
local rx, ry = guiGetScreenSize ( ) 
  
addEventHandler ( "onClientPlayerWasted", localPlayer, 
    function ( k ) 
        if ( source ~= localPlayer ) then 
            return 
        end 
  
        if ( isElement ( k ) and getElementType ( k ) == "player" ) then 
            player = k 
            setCameraTarget ( k ) 
            addEventHandler ( "onClientRender", root, killcam ) 
            setTimer ( 
                function ( ) 
                    removeEventHandler ( "onClientRender", root, killcam ) 
                end 
                ,6000, 1 
            ) 
        end 
    end 
) 
  
function killcam ( ) 
    if isElement ( player ) then 
        dxDrawText ( "Viewing Kill Cam of " .. getPlayerName ( player ) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false ) 
    end 
end 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...