Help:User levels

From Club Penguin Fanon Wiki
Jump to: navigation, search

Code from site:

Ranks[edit]

// The actual user level definitions -- key is simple: 'Level name' => points needed
// Using Fanon's ranks, but nearing the end I dramatically bumped up the points needed, as the max was easy to get with explorer's original points.
$wgUserLevels = array(
	'Redlink' => 0,
	'Common Pawn' => 500,
	'Conspiracy Theorist' => 1000,
	'Honorary Member' => 1500,
	'Janitor' => 1850,
	'Lift Operator' => 2100,
	'Intern' => 2800,
	'Average Employee' => 3100,
	'Overachieving Employee' => 3500,
	'Elite Employee' => 4000,
	'Sysop's Secretary' => 7500,
	'Sysop of Fiction' => 10000,
	'Bureaucrat's Secretary' => 25000,
	'Bureaucrat of Fiction' => 75000,
	'Master's Secretary' => 100000,
	'Master of the Universe' => 250000,
	'Boardman of Fiction' => 750000,
	'Superlative One' => 1000000,
);

Points[edit]

//Code for SocialProfile point values.
$wgUserStatsPointValues['edit'] = 50; // Points awarded on a mainspace edit
$wgUserStatsPointValues['vote'] = 0; // Points awarded for voting for an article
$wgUserStatsPointValues['comment'] = 0; // Points awarded for leaving a comment
$wgUserStatsPointValues['comment_plus'] = 0; // Points awarded if your comment gets a thumbs up 
$wgUserStatsPointValues['comment_ignored'] = 0; // Points awarded if another user ignores your comments
$wgUserStatsPointValues['opinions_created'] = 0; // Points awarded for writing a blog article
$wgUserStatsPointValues['opinions_pub'] = 0; // Points awarded for having that article hit the "Blogs" page
$wgUserStatsPointValues['referral_complete'] = 15; // Points awarded for recruiting a new user
$wgUserStatsPointValues['friend'] = 5; // Points awarded for adding a friend
$wgUserStatsPointValues['foe'] = 0; // Points awarded for adding a foe
$wgUserStatsPointValues['gift_rec'] = 10; // Points awarded for receiving a gift
$wgUserStatsPointValues['gift_sent'] = 5; // Points awarded for giving a gift
$wgUserStatsPointValues['points_winner_weekly'] = 25; // Points awarded for having the most points for a week 
$wgUserStatsPointValues['points_winner_monthly'] = 100; // Points awarded for having the most points for a month 
$wgUserStatsPointValues['user_image'] = 1000; // Points awareded for adding your first avatar 
$wgUserStatsPointValues['poll_vote'] = 0; // Points awarded for taking a poll
$wgUserStatsPointValues['quiz_points'] = 0; // Points awarded for answering a quiz question 
$wgUserStatsPointValues['quiz_created'] = 0; // Points awarded for creating a quiz question 
$wgNamespacesForEditPoints = array(0); // Array of namespaces for that can earn you points. Use numerical keys. Default is 0 -- only main namespace edits can earn a user points.