Help:User levels: Difference between revisions

From PortlandWiki
Jump to navigation Jump to search
(snarkiness)
 
(Answering kotra.)
Line 1: Line 1:
What the heck are these things? Apprentice? Private?? How soon until I become an officer and can send privates to their deaths??? -[[User:Kotra|kotra]] ([[User talk:Kotra|talk]]) 18:03, 21 May 2011 (PDT)
What the heck are these things? Apprentice? Private?? How soon until I become an officer and can send privates to their deaths??? -[[User:Kotra|kotra]] ([[User talk:Kotra|talk]]) 18:03, 21 May 2011 (PDT)
:The militaristic bullshit came straight outta the box. It's now changed to the drivel you see below... --[[User:WikiMaster|WikiMaster]] ([[User talk:WikiMaster|talk]]) 21:31, 21 May 2011 (PDT)
<code>
require_once("$IP/extensions/SocialProfile/UserStats/EditCount.php"); // Necessary edit counter
// The actual user level definitions -- key is simple: 'Level name' => points needed
$wgUserLevels = array(
        'Proto Bot' => 0,
        'Baby Bot' => 1200,
        'ToddleBot' => 1750,
        'Little Nerd' => 2500,
        'Nerd' => 5000,
        'Big Nerd' => 10000,
        'Approaching Geekishness' => 20000,
        'Geekly' => 35000,
        'Minor Geek' => 50000,
        'Major Geek' => 75000,
        'Geekified' => 100000,
        'ProtoDork' => 150000,
        'DorkBits' => 250000,
        'Dork' => 350000,
        'Major Dork' => 500000,
        'Dorktator' => 650000,
        'Emperor of Dorkdom' => 800000,
        'WikiGod' => 1000000,
);
</code>

Revision as of 21:31, 21 May 2011

What the heck are these things? Apprentice? Private?? How soon until I become an officer and can send privates to their deaths??? -kotra (talk) 18:03, 21 May 2011 (PDT)

The militaristic bullshit came straight outta the box. It's now changed to the drivel you see below... --WikiMaster (talk) 21:31, 21 May 2011 (PDT)

require_once("$IP/extensions/SocialProfile/UserStats/EditCount.php"); // Necessary edit counter
// The actual user level definitions -- key is simple: 'Level name' => points needed
$wgUserLevels = array(
       'Proto Bot' => 0,
       'Baby Bot' => 1200,
       'ToddleBot' => 1750,
       'Little Nerd' => 2500,
       'Nerd' => 5000,
       'Big Nerd' => 10000,
       'Approaching Geekishness' => 20000,
       'Geekly' => 35000,
       'Minor Geek' => 50000,
       'Major Geek' => 75000,
       'Geekified' => 100000,
       'ProtoDork' => 150000,
       'DorkBits' => 250000,
       'Dork' => 350000,
       'Major Dork' => 500000,
       'Dorktator' => 650000,
       'Emperor of Dorkdom' => 800000,
       'WikiGod' => 1000000,
);