Flu Posted June 30, 2008 Share Posted June 30, 2008 just copy-pasted out of the staff lounge of RV. I've quit from RV so i don't care if this is leaking or not, and anyway i wrote it :P So, how to get it to work: (all file locations are respectibe of the root directory) open viewtopic.php find: 'S_ONLINE' => ($poster_id == ANONYMOUS || !$config['load_onlinetrack']) ? false : (($user_cache[$poster_id]['online']) ? true : false), after, add: 'ONLINE_TXT' => ($poster_id == ANONYMOUS || !$config['load_onlinetrack']) ? '' : (($user_cache[$poster_id]['online']) ? $user->lang['ONLINE'] : $user->lang['OFFLINE'] ), 'ONLINE_COLOR' => ($poster_id == ANONYMOUS || !$config['load_onlinetrack']) ? '' : (($user_cache[$poster_id]['online']) ? "green" : "red" ), open language/en/common.php find: 'STATISTICS' => 'Statistics', after, add: 'STATUS' => 'Status', save/close all files. go into admin panel; styles; templates; edit template open viewtopic.html in the styles edit thing: Delete: {postrow.ONLINE_IMG} find: after, add: {L_STATUS}: {postrow.ONLINE_TXT} commit the changes. voila. Colours are included with it, but are a seperate variable because i'm lazy. You can preview it here here's an image: i'f you want to use on these forums, feel free ;) But it's free code for anyone to use if they wish Link to comment Share on other sites More sharing options...
pryomancer Posted June 30, 2008 Share Posted June 30, 2008 We already have something that says whether you are online or offline... :| Link to comment Share on other sites More sharing options...
Flu Posted July 1, 2008 Author Share Posted July 1, 2008 We already have something that says whether you are online or offline... :| I wrote it as a replacement for the banner, which on some forums can look quite out of place. It also free's up a bit of space in the side panel for you to use for MODs like the custom title MOD etc. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now