01.08.2011, 16:22
Since I assume I know where you're coming from, I can tell you a little about it!
The "Latest server member" is actually stored as a cached string (using Alternative PHP Cache) and displayed through Themes/THEME/BoardIndex.template.php. The cache is updated every time someone new registers in file newuser.php. The file newuser.php is called using HTTP() function which was introduced in 0.3b.
Player information can be displayed in one's profile by modifying Themes/THEME/Profile.template.php, but before some changes are necessary to be made in Sources/Load.php. Of course they key to all this is having an extra field in smf_members table which stores the player's server registration ID, and the server players table must have an extra field to store the player's member user ID.
The "Latest server member" is actually stored as a cached string (using Alternative PHP Cache) and displayed through Themes/THEME/BoardIndex.template.php. The cache is updated every time someone new registers in file newuser.php. The file newuser.php is called using HTTP() function which was introduced in 0.3b.
Player information can be displayed in one's profile by modifying Themes/THEME/Profile.template.php, but before some changes are necessary to be made in Sources/Load.php. Of course they key to all this is having an extra field in smf_members table which stores the player's server registration ID, and the server players table must have an extra field to store the player's member user ID.

