-
Notifications
You must be signed in to change notification settings - Fork 0
/
ranksets.php
51 lines (48 loc) · 1.43 KB
/
ranksets.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
// AcmlmBoard XD - Source file for addranks.php
// Access: N/A
//Rank images should match the rank text, but without punctuation or spaces.
//Possible settings for a rankset include:
// "name" -- required, name displayed in choices
// "directory" -- name of rankset image directory, defaults to name
// "notolower" -- bool, disables str_tolower() calls, e.g. canonical Zelda set
// "noimages" -- bool, disables automajickal conversion to <img> tags
// "splitlines" -- bool, enables <br /> insertion
//Note that any rank below 10 posts is assumed text only as if noimages was set.
//Credit to greatdocbrown for the coins and gem assets (https://greatdocbrown.itch.io/coins-gems-etc)
$ranks = array
(
array
(
"name" => "Coins and Gems",
"ranks" => array
(
0 => "Non-poster",
1 => "Newcomer",
25 => "Bronze Coin",
50 => "Iron Coin",
75 => "Silver Coin",
100 => "Gold Coin",
200 => "Bronze Star",
300 => "Iron Star",
400 => "Silver Star",
500 => "Gold Star",
625 => "Ruby Radiant",
750 => "Calcite Radiant",
875 => "Emerald Radiant",
1000 => "Sapphire Radiant",
1250 => "Purple Sapphire Radiant",
1500 => "Ruby Octagon",
1750 => "Calcite Octagon",
2000 => "Emerald Octagon",
2250 => "Sapphire Octagon",
2500 => "Purple Sapphire Octagon",
3000 => "Ruby Gem",
3500 => "Calcite Gem",
4000 => "Emerald Gem",
4500 => "Sapphire Gem",
5000 => "Purple Sapphire Gem",
)
),
);
?>