Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
As in title, can I make a clock that runs even while the game is off. iIf you have one can you please post it here, if not, is it possible to make one with RGSS
yeah you can use the time modlue.
this is what i did for my day/night system:
@time = Time.now
$game_variables[3] = @time.sec#seconds
$game_variables[4] = @time.min#minutes
$game_variables[5] = @time.hour#hours
$game_variables[6] = @time.day#day
$game_variables[7] = @time.month#month
$game_variables[8] = @time.year#year
$game_variables[9] =
@time.strftime("%p")#am/pm
and then just add that into a script(with events(last page last command)). and then use thos variables to tell time(you can change the variables to any).