User Data
api.user_data is the class that the the user's data is stored in ( it needs the program to be initialized and the user to be logged in ) :
user_data.username is the username of the person that logged in
user_data.email is the email of the person that logged in
user_data.expires is the expiry date (saved as DateTime[c#] or std::tm[c++]) of the person that logged in
user_data.rank is the rank of the person that logged in
user_data.var is the custom variable of the person that logged in ( can be set on the panel's user page )
Code-Example