Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Player age
Author Message
Leonidas
Master
**

Posts: 277
Likes Given: 3
Likes Received: 13 in 12 posts
Joined: May 2013
Reputation: 1



Post: #1
Player age
Hey I was wondering if there is a way to redo the player age system.

Like for example, a player joins the server, he starts off at age 10, a real time month later, he turns 11, month later 12, month later, 13.
09-16-2015 08:02 AM
Find all posts by this user Like Post Quote this message in a reply
pointhz
Journeyman
*

Posts: 148
Likes Given: 1
Likes Received: 55 in 28 posts
Joined: Oct 2013
Reputation: 1



Post: #2
RE: Player age
ON=@LOGIN

IF !(<SRC.TAG0.AGE>)
SRC.TAG.AGE=10
TIMERF 2592000, f_age // 1 month in seconds
ENDIF

[FUNCTION f_age]
SRC.TAG.AGE=<EVAL (<SRC.TAG.AGE>+1)>
SRC.SYSMESSAGE You are now <EVAL <SRC.TAG.AGE>> years old. Type .age to see your current age.
IF (<EVAL <SRC.TAG0.AGE>> == 100)
SRC.SYSMESSAGE You'r old enough. Time to rest.
SRC.KILL
SRC.STONE
SRC.FLAGS=<SRC.FLAGS> & statf_war
ELSE
TIMERF 2592000, f_age
ENDIF

[FUNCTION age]
SRC.SYSMESSAGE You are <EVAL <SRC.TAG.AGE>> years old.


Something like that I guess? xD
(This post was last modified: 09-16-2015 08:59 AM by pointhz.)
09-16-2015 08:11 AM
Find all posts by this user Like Post Quote this message in a reply
Coruja
Sphere Developer
*****

Posts: 987
Likes Given: 5
Likes Received: 226 in 187 posts
Joined: Jul 2012
Reputation: 7

Dimension Shard

Post: #3
RE: Player age
you can compare the current time with ACCOUNT.FIRSTCONNECTDATE

something like this
Code:
[FUNCTION AccountAge]
ARGS=<EXPLODE /., <ACCOUNT.FIRSTCONNECTDATE>>
LOCAL.Timestamp=<SERV.RTICKS.FROMTIME <ARGV0>,<ARGV1>,<ARGV2>,<ARGV3>,<ARGV4>,<ARGV5>>
LOCAL.Timestamp=<eval <SERV.RTICKS>-<LOCAL.Timestamp>>
//add here something to format <LOCAL.Timestamp> into a readable value (eg: 1 month, 8 days, etc)
return <LOCAL.Timestamp>

or if you want make the timer count only when the account is online, this value is already stored in <ACCOUNT.TOTALCONNECTTIME> (in minutes). You just need to read this value and format it, since it makes more sense show that an account have an age of "4hr 2min" instead "14520 minutes"
09-16-2015 09:01 AM
Find all posts by this user Like Post Quote this message in a reply
Leonidas
Master
**

Posts: 277
Likes Given: 3
Likes Received: 13 in 12 posts
Joined: May 2013
Reputation: 1



Post: #4
RE: Player age
Thanks man, works perfectly!
09-16-2015 09:12 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)