Does this .beat time download still exist?

Sylverant is a homebrew open source server for Phantasy Star Online. Dreamcast users still play PSO online with this server even today! This is the official forum for both the online game server as well as the open source project itself. Feel free to post and get a gathering started online! We can also show you how to get connected!

Moderators: BlueCrab, Aleron Ives

Post Reply
kencaesi
DCEmu Crazy Poster
DCEmu Crazy Poster
Posts: 29
https://www.artistsworkshop.eu/meble-kuchenne-na-wymiar-warszawa-gdzie-zamowic/
Joined: Sat Aug 18, 2012 10:16 am
Location: Southern California
Has thanked: 0
Been thanked: 0

Does this .beat time download still exist?

Post by kencaesi »

In my research and solicitations for information about customizing weapons and armor via gameshark and codebreaker methods, I discovered that someone, either independantly or perhaps by SEGA, created a program that displays the current .beat time on a computer.

According to the source, the file is named "pso_timer2.exe" (the download link was dead, mind you). Does anyone have this download anywhere?
User avatar
Aleron Ives
DCEmu Nutter
DCEmu Nutter
Posts: 872
Joined: Wed Jan 05, 2011 2:15 pm
Location: California
Has thanked: 0
Been thanked: 25 times
Contact:

Re: Does this .beat time download still exist?

Post by Aleron Ives »

There is probably more than one such program, as it wouldn't be that difficult to write one. All you need is a program that counts from 0 - 999 starting at midnight GMT+1 and increasing the count by one every 86.4 seconds. You could probably even do it with JavaScript.
"Fear the HUnewearl."
Image
User avatar
K_I_R_E_E_K
Mental DCEmu
Mental DCEmu
Posts: 302
Joined: Mon Oct 27, 2008 6:47 pm
Has thanked: 0
Been thanked: 3 times

Re: Does this .beat time download still exist?

Post by K_I_R_E_E_K »

Don't know if they are the same as the one you mentioned, but these do the job.

No problem.
Attachments
beat time programs.zip
Beat time stuff
(433.64 KiB) Downloaded 63 times
Last edited by K_I_R_E_E_K on Tue Apr 16, 2013 3:22 pm, edited 2 times in total.
Image
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5660
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: Does this .beat time download still exist?

Post by BlueCrab »

I had a few minutes, so I added a .beat time display to the Sylverant website, right below the server status. It should be correct, as long as your time on your PC is right (since it updates using Javascript).
kencaesi
DCEmu Crazy Poster
DCEmu Crazy Poster
Posts: 29
Joined: Sat Aug 18, 2012 10:16 am
Location: Southern California
Has thanked: 0
Been thanked: 0

Re: Does this .beat time download still exist? - Resolution

Post by kencaesi »

BlueCrab wrote:I had a few minutes, so I added a .beat time display to the Sylverant website, right below the server status. It should be correct, as long as your time on your PC is right (since it updates using Javascript).
Thank you BlueCrab for the addtion to the Sylervant homepage. I briefly thought asking about such a feature but thought it would be too cumbersome and even irrelevant to impliment.

Additionaly, I would would also like to thank K_I_R_E_E_K for submitting the link to a possible download site - unfortunately, I was locked out because I use Internet Explorer 6 (I am not about to give up on a pefectly good computer) but I will be sure to review the content by the end of the week.
User avatar
BlueCrab
The Crabby Overlord
The Crabby Overlord
Posts: 5660
Joined: Mon May 27, 2002 11:31 am
Location: Sailing the Skies of Arcadia
Has thanked: 9 times
Been thanked: 69 times
Contact:

Re: Does this .beat time download still exist? - Resolution

Post by BlueCrab »

kencaesi wrote:
BlueCrab wrote:I had a few minutes, so I added a .beat time display to the Sylverant website, right below the server status. It should be correct, as long as your time on your PC is right (since it updates using Javascript).
Thank you BlueCrab for the addtion to the Sylervant homepage. I briefly thought asking about such a feature but thought it would be too cumbersome and even irrelevant to impliment.
Nah, it was dead easy actually:

Code: Select all

<script type="text/javascript">
function getBeats() {
    var now = new Date;
    var h = now.getUTCHours() + 1;
    var m = now.getUTCMinutes();
    var s = now.getUTCSeconds();
    
    if(h > 23)
        h = 0;
    
    s += (m * 60) + (h * 60 * 60);
    
    return Math.floor((s / (60 * 60 * 24)) * 1000);
}

function setBeatTime() {
    document.getElementById('time_div').innerHTML = '@' + getBeats();
}

setInterval(function(){setBeatTime()}, 200);
</script>
Other than adding the relevant space to the layout, that's literally it.
User avatar
Aleron Ives
DCEmu Nutter
DCEmu Nutter
Posts: 872
Joined: Wed Jan 05, 2011 2:15 pm
Location: California
Has thanked: 0
Been thanked: 25 times
Contact:

Re: Does this .beat time download still exist?

Post by Aleron Ives »

Speaking of old browsers, that script seems a little spastic in its updates. The beat time flickers. :lol:
"Fear the HUnewearl."
Image
User avatar
K_I_R_E_E_K
Mental DCEmu
Mental DCEmu
Posts: 302
Joined: Mon Oct 27, 2008 6:47 pm
Has thanked: 0
Been thanked: 3 times

Re: Does this .beat time download still exist?

Post by K_I_R_E_E_K »

kencaesi, i didn't know you used IE6, nontheless i edited my post and now has an option for you to download without going to mega website.
Image
kencaesi
DCEmu Crazy Poster
DCEmu Crazy Poster
Posts: 29
Joined: Sat Aug 18, 2012 10:16 am
Location: Southern California
Has thanked: 0
Been thanked: 0

Re: Does this .beat time download still exist? - Acknowledge

Post by kencaesi »

K_I_R_E_E_K wrote:kencaesi, i didn't know you used IE6, nontheless i edited my post and now has an option for you to download without going to mega website.
Thank you very much for the edit your earlier post - I was able to download the files, though I would have been able to use the initial link via public library computers, eventually.

I would like to have further elaboration on this .beat/internet time applicatons, though. Inspired by the likes of Vanadiel Clock, an alarm clock that showed the in-game time of "Final Fantasy XI", how difficult would be to create a VMU program that displayed the .beat time?
Last edited by kencaesi on Wed Apr 17, 2013 3:27 pm, edited 1 time in total.
User avatar
K_I_R_E_E_K
Mental DCEmu
Mental DCEmu
Posts: 302
Joined: Mon Oct 27, 2008 6:47 pm
Has thanked: 0
Been thanked: 3 times

Re: Does this .beat time download still exist?

Post by K_I_R_E_E_K »

Sega is probaly saying "oh, WHY didn't we think of that"
Image
Post Reply