[Help]Please - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: [Help]Please (
/showthread.php?tid=540901)
[Help]Please -
astanalol00 - 08.10.2014
Hello Guys
i Want Making When Player Register Save Player How much play in server min + hours + day + week + month + years
any one know that
please example to know the date
thanks for all
Re: [Help]Please -
(SF)Noobanatior - 08.10.2014
I did this a while back for a old game mode
i got the tickcount when they joined and disconected then
Subtracted the connect tickcount from the disconnect tickcount and saved that number
then timeconverted it to what a wanted to display
Re: [Help]Please -
rodrijose2009 - 08.10.2014
You can show, save, and load this variables in the right callbacks.
Код:
new secondsconnectedtime = NetStats_GetConnectedTime(playerid)/1000;
new minutesconnectedtime = secondsconnectedtime/60;
new hoursconnectedtime = minutesconnectedtime/60;
new daysconnectedtime = minutesconnectedtime/24;
new monthsconnectedtime = minutesconnectedtime/30;
new years = minutesconnectedtime/12;
Respuesta: Re: [Help]Please -
!R1Ch@rD! - 08.10.2014
Quote:
Originally Posted by rodrijose2009
You can show, save, and load this variables in the right callbacks.
Код:
new secondsconnectedtime = NetStats_GetConnectedTime(playerid)/1000;
new minutesconnectedtime = secondsconnectedtime/60;
new hoursconnectedtime = minutesconnectedtime/60;
new daysconnectedtime = minutesconnectedtime/24;
new monthsconnectedtime = minutesconnectedtime/30;
new years = minutesconnectedtime/12;
|
with this? could set the day and month and year in which the player was registered? and that I've been creating those functions in another way for the user only put / stats will leave the info player and the day that which you registered, but envez out the day it was recorded out this day bone An example
and when I put /stats out today I say register
register me
Date of Registration: 07/10/2014
but you have to get out
Date of Registration: 10/09/2014
That could help me there? you understand me?
Re: [Help]Please -
(SF)Noobanatior - 08.10.2014
not really sorry do you also want to save that date that they register?
Respuesta: Re: [Help]Please -
!R1Ch@rD! - 08.10.2014
Quote:
Originally Posted by (SF)Noobanatior
not really sorry do you also want to save that date that they register?
|
I mean that in aparesca /stats which actually date you registered! but what you want is that?
Re: [Help]Please -
(SF)Noobanatior - 08.10.2014
can use getdate and save the year month day is that what you mean
have a look at this
http://www.compuphase.com/pawn/Time_Functions.pdf
Re: [Help]Please -
astanalol00 - 08.10.2014
only
Day/Month/Years
i dont need much
Re: [Help]Please -
astanalol00 - 08.10.2014
help please
Re: [Help]Please -
Pi5tol - 08.10.2014
Good luck finding it doe.