Jump to content

[Ayuda] getTickCount


~Funky~

Recommended Posts

Hola a todos tengo este problema con el getTickCount, lo que pasa es que al aparecer al boss por el comando solo me sale el outputChatBox de que no se puede y nose que hacer :c

  
local TiempoPr = 0 
     
    function Piromano() 
        if ( getTickCount ( ) - TiempoPr == 5000 ) then 
        Piro = exports [ "slothBot" ]:spawnBot ( 1203.3740234375, -2153.943359375, 62.104778289795, 90, math.random ( 300, 303 ), 0, 0, Piro, 37, "guarding", true ) 
        exports.extra_health:setElementExtraHealth ( Piro, 1500 ) 
        setElementModel ( Piro, 162 ) 
        setElementAlpha ( Piro, 50) 
        outputChatBox("EL PIROMANO A APARECIDO!",source,255,0,0,true)    
        else 
        outputChatBox("A Aparecido Un Boss Recientemente Debes Esperar 5 Segundos Para Un Respawn",source,255,0,0,true) 
    end 
    end 
addCommandHandler ( "aparecerpiromano", Piromano) 
  

Imagen :

1zdqauo.png

El Desbug no me manda nada :C

Link to comment
local TiempoPr = 0 
  
function Piromano ( ) 
    if ( getTickCount ( ) - TiempoPr == 5000 ) then 
        Piro = exports [ "slothBot" ]:spawnBot ( 1203.3740234375, -2153.943359375, 62.104778289795, 90, math.random ( 300, 303 ), 0, 0, Piro, 37, "guarding", true ) 
        exports.extra_health:setElementExtraHealth ( Piro, 1500 ) 
        setElementModel ( Piro, 162 ) 
        setElementAlpha ( Piro, 50) 
        outputChatBox("EL PIROMANO A APARECIDO!",source,255,0,0,true)    
        TiempoPr = getTickCount ( ) 
    else 
        outputChatBox("A Aparecido Un Boss Recientemente Debes Esperar 5 Segundos Para Un Respawn",source,255,0,0,true) 
    end 
end 
addCommandHandler ( "aparecerpiromano", Piromano ) 

Link to comment
  • Recently Browsing   0 members

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