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.
Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
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).