RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RESOLVED] HELP!!!

0 Members and 1 Guest are viewing this topic.

pokeball cjkOffline
**
Rep:
Level 87
I need to know how to make an event that tells you the REAL time. Any way to do this?
« Last Edit: May 08, 2007, 11:18:56 PM by Zeriab »

*
Rep:
Level 102
2014 Biggest Narcissist Award2014 Biggest Forum Potato2014 Best Non-RM Creator2013 Best Game Creator (Non-RM)2013 Best IRC ChatterboxParticipant - GIAW 112012 Most Successful Troll2012 Funniest Member2012 Best Use Of Avatar and Signature space2012 Best IRC ChatterboxSecret Santa 2012 ParticipantProject of the Month winner for November 2009For being a noted contributor to the RMRK Wiki2010 Most Successful Troll2010 Biggest Forum Couch Potato2010 Best IRC Chatterbox
This has been requested before.

It's impossible.

EDIT: Next time, please make a descriptive title, and post in the correct board.

pokeball cjkOffline
**
Rep:
Level 87

***
Pure Awesome.
Rep:
Level 87
Narrowing Fabrications of an Elusive Mind
Don't apologize to Irock look at his rep. He's hated.

*
Rep:
Level 102
2014 Biggest Narcissist Award2014 Biggest Forum Potato2014 Best Non-RM Creator2013 Best Game Creator (Non-RM)2013 Best IRC ChatterboxParticipant - GIAW 112012 Most Successful Troll2012 Funniest Member2012 Best Use Of Avatar and Signature space2012 Best IRC ChatterboxSecret Santa 2012 ParticipantProject of the Month winner for November 2009For being a noted contributor to the RMRK Wiki2010 Most Successful Troll2010 Biggest Forum Couch Potato2010 Best IRC Chatterbox
Lackluster, rep doesn't mean anything.

That also doesn't contribute to his question at all.

*
? ? ? ? ? ? ? ? ? The nice kind of alien~
Rep:
Level 92
Martian - Occasionally kind
Try putting this in a Call Script command.
Code: [Select]
p Time.now

That is probably not what you want and I suggest that you do it with scripts anyway.

If you just want to display it in the menu you can open the script editor, select Window_PlayTime and find these 4 lines: (make a backup of your game)
Code: [Select]
    @total_sec = Graphics.frame_count / Graphics.frame_rate
    hour = @total_sec / 60 / 60
    min = @total_sec / 60 % 60
    sec = @total_sec % 60

Replace them with these 4 lines:
Code: [Select]
    time = Time.now
    hour = time.hour
    min = time.min
    sec = time.sec


If you want more than this I suggest you post in the script request section ^_^