Any getTime method on server side ?
I need to getTime for every day bonus for player
any getTime method on server side ?
-
kotbegemot
- Posts: 82
- Joined: 21 Nov 2010, 05:05
- Location: Saint-Petersburg
hi. If you are using AS extensions, there are some getDate methods, like in Flash. So im pretty sure there.s also for getting the time. Sorry im on mobile but you can try searching on Google
Skills: SFS Pro, SFS2X, AS2.0/AS3.0, Java, HTML5/CSS3/JS, C#
Portfolio: https://rjgtav.wordpress.com/
SFS Tutorials: http://sfs-tutor.blogspot.com/ - Discontinued. Some examples may be bugged.
Portfolio: https://rjgtav.wordpress.com/
SFS Tutorials: http://sfs-tutor.blogspot.com/ - Discontinued. Some examples may be bugged.
-
kotbegemot
- Posts: 82
- Joined: 21 Nov 2010, 05:05
- Location: Saint-Petersburg
Thanks !!!
But very strange
trace
4
5
2011
But today is 04.06.2011
But very strange
Code: Select all
trace(String(today_date.getFullYear()));
trace(String(today_date.getMonth()));
trace(String(today_date.getDate()));trace
4
5
2011
But today is 04.06.2011
-
kotbegemot
- Posts: 82
- Joined: 21 Nov 2010, 05:05
- Location: Saint-Petersburg
if i remember correctly, on the month case, you need to do today_date.getMonth()+1.
=EDIT=
I think its a flash bug, not sure. For some reason it starts the month count from 0 instead of 1
=EDIT=
I think its a flash bug, not sure. For some reason it starts the month count from 0 instead of 1
Skills: SFS Pro, SFS2X, AS2.0/AS3.0, Java, HTML5/CSS3/JS, C#
Portfolio: https://rjgtav.wordpress.com/
SFS Tutorials: http://sfs-tutor.blogspot.com/ - Discontinued. Some examples may be bugged.
Portfolio: https://rjgtav.wordpress.com/
SFS Tutorials: http://sfs-tutor.blogspot.com/ - Discontinued. Some examples may be bugged.
-
kotbegemot
- Posts: 82
- Joined: 21 Nov 2010, 05:05
- Location: Saint-Petersburg
Code: Select all
var today_date = new Date();
var date_str = String(today_date.getFullYear()+"_"+(today_date.getMonth()+1)+"_"+today_date.getDate());
-
kotbegemot
- Posts: 82
- Joined: 21 Nov 2010, 05:05
- Location: Saint-Petersburg