Jump to content

Recommended Posts

Witajcie, gdy zrobiłem krótki skrypt na czas gry, to gdy wejdzie gracz na serwer, zaloguje się, wybierze skin, ustawia mu czas gry na 10-20 minut zamiast na 0.

O to kod:

czasGry = getTickCount() 
local gameTime = czasGry+getTickCount() 
local gameTimeS = math.floor(gameTime/1000) 
playerGameTime = math.floor(gameTimeS/60+1) 

Link to comment

Moim zdaniem to powinno być tak:

local gameTime0 = getTickCount() -- ta linijka wykonywana tylko raz, gdy gracz wejdzie na serwer 
    local gameTime = getTickCount() - gameTime0 -- ta linijka i te poniżej wykonywane gdy potrzeba sprawdzić jak długo gracz jest na serwerze 
    local gameTimeS = math.floor(gameTime/1000) 
    playerGameTime = math.floor(gameTimeS/60+1) 

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...