2019-01-06 00:07:48 +00:00
|
|
|
/*
|
2019-01-06 02:04:19 +00:00
|
|
|
./\/\." ENiGMA½ Achievement Configuration -/--/-------- - -- -
|
2019-01-06 00:07:48 +00:00
|
|
|
|
|
|
|
_____________________ _____ ____________________ __________\_ /
|
|
|
|
\__ ____/\_ ____ \ /____/ / _____ __ \ / ______/ // /___jp!
|
|
|
|
// __|___// | \// |// | \// | | \// \ /___ /_____
|
|
|
|
/____ _____| __________ ___|__| ____| \ / _____ \
|
|
|
|
---- \______\ -- |______\ ------ /______/ ---- |______\ - |______\ /__/ // ___/
|
|
|
|
/__ _\
|
|
|
|
<*> ENiGMA½ // HTTPS://GITHUB.COM/NUSKOOLER/ENIGMA-BBS <*> /__/
|
|
|
|
|
|
|
|
*-----------------------------------------------------------------------------*
|
|
|
|
|
|
|
|
General Information
|
|
|
|
------------------------------- - -
|
|
|
|
This configuration is in HJSON (http://hjson.org/) format. Strict to-spec
|
2019-01-06 02:04:19 +00:00
|
|
|
JSON is also perfectly valid. Use "hjson" from npm to convert to/from JSON.
|
2019-01-06 00:07:48 +00:00
|
|
|
|
|
|
|
See http://hjson.org/ for more information and syntax.
|
|
|
|
|
2019-01-06 02:04:19 +00:00
|
|
|
Various editors and IDEs such as Sublime Text 3 Visual Studio Code and so
|
2019-01-06 00:07:48 +00:00
|
|
|
on have syntax highlighting for the HJSON format which are highly recommended.
|
|
|
|
|
|
|
|
------------------------------- -- - -
|
|
|
|
Achievement Configuration
|
|
|
|
------------------------------- - -
|
|
|
|
Achievements are currently fairly limited in what can trigger them. This is
|
|
|
|
being expanded upon and more will be available in the near future. For now
|
|
|
|
you should mostly be interested in:
|
|
|
|
- Perhaps adding additional *levels* of triggers & points
|
|
|
|
- Applying customizations via the achievements section in theme.hjson
|
|
|
|
|
2019-01-06 02:04:19 +00:00
|
|
|
Some tips:
|
2019-01-07 04:56:12 +00:00
|
|
|
- For 'userStatSet' types, see user_property.js
|
2019-01-06 02:04:19 +00:00
|
|
|
|
|
|
|
Don"t forget to RTFM ...er uh... see the documentation for more information and
|
|
|
|
don"t be shy to ask for help:
|
2019-01-06 00:07:48 +00:00
|
|
|
|
|
|
|
BBS : Xibalba @ xibalba.l33t.codes
|
|
|
|
FTN : BBS Discussion on fsxNet or ArakNet
|
|
|
|
IRC : #enigma-bbs / FreeNode
|
|
|
|
Email : bryan@l33t.codes
|
|
|
|
*/
|
2019-01-05 19:18:44 +00:00
|
|
|
{
|
2019-01-10 03:07:46 +00:00
|
|
|
// Set to false to disable the achievement system
|
2019-01-06 02:04:19 +00:00
|
|
|
enabled : true
|
2019-01-05 19:18:44 +00:00
|
|
|
|
|
|
|
art : {
|
2019-01-06 02:04:19 +00:00
|
|
|
localHeader: achievement_local_header
|
|
|
|
localFooter: achievement_local_footer
|
|
|
|
globalHeader: achievement_global_header
|
|
|
|
globalFooter: achievement_global_footer
|
|
|
|
}
|
2019-01-05 19:18:44 +00:00
|
|
|
|
2019-01-06 02:04:19 +00:00
|
|
|
achievements: {
|
|
|
|
user_login_count: {
|
2019-01-07 04:56:12 +00:00
|
|
|
type: userStatSet
|
2019-01-06 02:04:19 +00:00
|
|
|
statName: login_count
|
|
|
|
match: {
|
|
|
|
2: {
|
|
|
|
title: "Return Caller"
|
|
|
|
globalText: "{userName} has returned to {boardName}!"
|
2019-01-06 17:41:04 +00:00
|
|
|
text: "You've returned to {boardName}!"
|
2019-01-06 02:04:19 +00:00
|
|
|
points: 5
|
|
|
|
}
|
|
|
|
10: {
|
2019-01-06 05:51:16 +00:00
|
|
|
title: "Curious Caller"
|
2019-01-06 02:04:19 +00:00
|
|
|
globalText: "{userName} has logged into {boardName} {achievedValue} times!"
|
|
|
|
text: "You've logged into {boardName} {achievedValue} times!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 10
|
2019-01-06 02:04:19 +00:00
|
|
|
}
|
|
|
|
25: {
|
2019-01-14 01:19:00 +00:00
|
|
|
title: "Inquisitive"
|
2019-01-06 02:04:19 +00:00
|
|
|
globalText: "{userName} has logged into {boardName} {achievedValue} times!"
|
|
|
|
text: "You've logged into {boardName} {achievedValue} times!"
|
|
|
|
points: 10
|
|
|
|
}
|
2019-01-25 04:55:03 +00:00
|
|
|
75: {
|
|
|
|
title: "Still Interested!"
|
|
|
|
globalText: "{userName} has logged into {boardName} {achievedValue} times!"
|
|
|
|
text: "You've logged into {boardName} {achievedValue} times!"
|
|
|
|
points: 15
|
|
|
|
}
|
2019-01-06 02:04:19 +00:00
|
|
|
100: {
|
2019-01-06 05:51:16 +00:00
|
|
|
title: "Regular Customer"
|
2019-01-06 02:04:19 +00:00
|
|
|
globalText: "{userName} has logged into {boardName} {achievedValue} times!"
|
|
|
|
text: "You've logged into {boardName} {achievedValue} times!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 25
|
|
|
|
}
|
|
|
|
250: {
|
|
|
|
title: "Speed Dial",
|
|
|
|
globalText: "{userName} has logged into {boardName} {achievedValue} times!"
|
|
|
|
text: "You've logged into {boardName} {achievedValue} times!"
|
|
|
|
points: 50
|
2019-01-06 02:04:19 +00:00
|
|
|
}
|
|
|
|
500: {
|
2019-01-06 05:51:16 +00:00
|
|
|
title: "System Addict"
|
2019-01-06 02:04:19 +00:00
|
|
|
globalText: "{userName} the BBS {boardName} addict has logged in {achievedValue} times!"
|
|
|
|
text: "You're a {boardName} addict! You've logged in {achievedValue} times!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 50
|
2019-01-06 02:04:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-05 19:18:44 +00:00
|
|
|
|
2019-01-06 02:04:19 +00:00
|
|
|
user_post_count: {
|
2019-01-07 04:56:12 +00:00
|
|
|
type: userStatSet
|
2019-01-06 02:04:19 +00:00
|
|
|
statName: post_count
|
|
|
|
match: {
|
2019-01-25 04:55:03 +00:00
|
|
|
2: {
|
2019-01-06 02:04:19 +00:00
|
|
|
title: "Poster"
|
|
|
|
globalText: "{userName} has posted {achievedValue} messages!"
|
|
|
|
text: "You've posted {achievedValue} messages!"
|
|
|
|
points: 5
|
|
|
|
}
|
2019-01-25 04:55:03 +00:00
|
|
|
5: {
|
2019-01-06 02:04:19 +00:00
|
|
|
title: "Poster... again!",
|
|
|
|
globalText: "{userName} has posted {achievedValue} messages!"
|
|
|
|
text: "You've posted {achievedValue} messages!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 5
|
|
|
|
}
|
|
|
|
20: {
|
|
|
|
title: "Just Want to Talk",
|
|
|
|
globalText: "{userName} has posted {achievedValue} messages!"
|
|
|
|
text: "You've posted {achievedValue} messages!"
|
2019-01-06 02:04:19 +00:00
|
|
|
points: 10
|
|
|
|
}
|
|
|
|
100: {
|
2019-01-25 04:55:03 +00:00
|
|
|
title: "Probably Just Spam",
|
2019-01-06 02:04:19 +00:00
|
|
|
globalText: "{userName} has posted {achievedValue} messages!"
|
|
|
|
text: "You've posted {achievedValue} messages!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 25
|
2019-01-06 02:04:19 +00:00
|
|
|
}
|
2019-01-25 04:55:03 +00:00
|
|
|
250: {
|
2019-01-06 02:04:19 +00:00
|
|
|
title: "Scribe"
|
|
|
|
globalText: "{userName} the scribe has posted {achievedValue} messages!"
|
|
|
|
text: "Such a scribe! You've posted {achievedValue} messages!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 50
|
|
|
|
}
|
|
|
|
500: {
|
|
|
|
title: "Writing a Book"
|
|
|
|
globalText: "{userName} is writing a book and has posted {achievedValue} messages!"
|
|
|
|
text: "You've posted {achievedValue} messages!"
|
|
|
|
points: 50
|
2019-01-06 02:04:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
user_upload_count: {
|
2019-01-07 04:56:12 +00:00
|
|
|
type: userStatSet
|
2019-01-06 02:04:19 +00:00
|
|
|
statName: ul_total_count
|
|
|
|
match: {
|
|
|
|
1: {
|
|
|
|
title: "Uploader"
|
|
|
|
globalText: "{userName} has uploaded a file!"
|
|
|
|
text: "You've uploaded somthing!"
|
|
|
|
points: 5
|
|
|
|
}
|
|
|
|
10: {
|
|
|
|
title: "Moar Uploads!"
|
|
|
|
globalText: "{userName} has uploaded {achievedValue} files!"
|
|
|
|
text: "You've uploaded {achievedValue} files!"
|
|
|
|
points: 10
|
|
|
|
}
|
|
|
|
50: {
|
|
|
|
title: "Contributor"
|
|
|
|
globalText: "{userName} has uploaded {achievedValue} files!"
|
|
|
|
text: "You've uploaded {achievedValue} files!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 25
|
2019-01-06 02:04:19 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
100: {
|
|
|
|
title: "Courier"
|
|
|
|
globalText: "Courier {userName} has uploaded {achievedValue} files!"
|
|
|
|
text: "You've uploaded {achievedValue} files!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 50
|
2019-01-06 02:04:19 +00:00
|
|
|
}
|
|
|
|
200: {
|
|
|
|
title: "Must Be a Drop Site"
|
|
|
|
globalText: "{userName} has uploaded a whomping {achievedValue} files!"
|
|
|
|
text: "You've uploaded a whomping {achievedValue} files!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 55
|
2019-01-06 02:04:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 03:07:46 +00:00
|
|
|
user_upload_bytes: {
|
|
|
|
type: userStatSet
|
|
|
|
statName: ul_total_bytes
|
|
|
|
match: {
|
2019-02-02 17:20:06 +00:00
|
|
|
10240: {
|
|
|
|
text: "UNIVAC Drum"
|
|
|
|
globalText: "{userName} has uploaded 10k. Enough to fill a UNIVAC drum!"
|
|
|
|
text: "You've uploaded 10k. Enough to fill a UNIVAC drum!"
|
|
|
|
points: 5
|
|
|
|
}
|
2019-01-10 03:07:46 +00:00
|
|
|
524288: {
|
|
|
|
title: "Kickstart"
|
|
|
|
globalText: "{userName} has uploaded 512KB, enough for a Kickstart!"
|
|
|
|
text: "You've uploaded 512KB, enough for a Kickstart!"
|
|
|
|
points: 10
|
|
|
|
}
|
|
|
|
1474560: {
|
2019-01-25 04:55:03 +00:00
|
|
|
title: "AOL Disk Anyone?"
|
|
|
|
globalText: "{userName} has uploaded 1.44M worth of data. Hopefully it's not AOL!"
|
|
|
|
title: "You've uploaded 1.44M worth of data. Hopefully it's not AOL!"
|
|
|
|
points: 10
|
2019-01-10 03:07:46 +00:00
|
|
|
}
|
|
|
|
6291456: {
|
|
|
|
title: "A Quake of a Upload"
|
|
|
|
globalText: "{userName} has uploaded 6 x 1.44MB disks worth of data. That's the size of Quake for DOS!"
|
|
|
|
text: "You've uploaded 6 x 1.44MB disks worth of data. That's the size of Quake for DOS!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 20
|
|
|
|
}
|
|
|
|
104857600: {
|
|
|
|
title: "Zip 100"
|
|
|
|
globalText: "{userName} has uploaded a Zip 100 disk's worth of data!"
|
|
|
|
text: "You've uploaded a Zip 100 disk's worth of data!"
|
2019-01-10 03:07:46 +00:00
|
|
|
points: 25
|
|
|
|
}
|
|
|
|
1073741824: {
|
|
|
|
title: "Gigabyte!"
|
|
|
|
globalText: "{userName} has uploaded a Gigabyte worth of data!"
|
|
|
|
text: "You've uploaded a Gigabyte worth of data!"
|
|
|
|
points: 50
|
|
|
|
}
|
|
|
|
3407872000: {
|
|
|
|
title: "Encarta"
|
2019-01-25 04:55:03 +00:00
|
|
|
globalText: "{userName} has uploaded 5xCD discs worth of data. That's the size of Encarta!"
|
|
|
|
text: "You've uploaded 5xCD discs worth of data. That's the size of Encarta!"
|
2019-02-02 17:20:06 +00:00
|
|
|
points: 50
|
|
|
|
}
|
|
|
|
7025459200: {
|
|
|
|
title: "NFL_Madden_2007_USA_BLURAY_DIRFIX_PS3-PARADOX"
|
|
|
|
globalText: "{userName} has uploaded 67x100 MiB worth of data, the size of the worlds first PS3 rip!"
|
|
|
|
text: "You've uploaded 67x100 MiB worth of data, the size of the world first PS3 rip!"
|
2019-01-10 03:07:46 +00:00
|
|
|
points: 100
|
|
|
|
}
|
2019-02-02 17:20:06 +00:00
|
|
|
25018184499: {
|
|
|
|
title: "WaYsTeD"
|
|
|
|
globalText: "{userName} has uploaded 23.3 GiB of data, the size of the first PS4 rip: Watch.Dogs.PS4-WaYsTeD!"
|
|
|
|
text: "You've uploaded 23.3 GiB of data, the size of the first PS4 rip: Watch.Dogs.PS4-WaYsTeD!"
|
|
|
|
points: 150
|
|
|
|
}
|
2019-01-10 03:07:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-06 02:04:19 +00:00
|
|
|
user_download_count: {
|
2019-01-07 04:56:12 +00:00
|
|
|
type: userStatSet
|
2019-01-06 02:04:19 +00:00
|
|
|
statName: dl_total_count
|
|
|
|
match: {
|
|
|
|
1: {
|
|
|
|
title: "Downloader"
|
|
|
|
globalText: "{userName} has downloaded a file!"
|
|
|
|
text: "You've downloaded somthing!"
|
|
|
|
points: 5
|
|
|
|
}
|
|
|
|
10: {
|
|
|
|
title: "Moar Downloads!"
|
|
|
|
globalText: "{userName} has downloaded {achievedValue} files!"
|
|
|
|
text: "You've downloaded {achievedValue} files!"
|
|
|
|
points: 10
|
|
|
|
}
|
|
|
|
50: {
|
|
|
|
title: "Leecher"
|
|
|
|
globalText: "{userName} has leeched {achievedValue} files!"
|
|
|
|
text: "You've leeched... er... downloaded {achievedValue} files!"
|
|
|
|
points: 15
|
|
|
|
}
|
|
|
|
100: {
|
|
|
|
title: "Hoarder"
|
|
|
|
globalText: "{userName} has downloaded {achievedValue} files!"
|
|
|
|
text: "Hoarding files? You've downloaded {achievedValue} files!"
|
|
|
|
points: 20
|
|
|
|
}
|
|
|
|
200: {
|
|
|
|
title: "Digital Archivist"
|
|
|
|
globalText: "{userName} the digital archivist has {achievedValue} files!"
|
|
|
|
text: "Building an archive? You've downloaded {achievedValue} files!"
|
|
|
|
points: 25
|
2019-01-05 19:18:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 04:17:53 +00:00
|
|
|
|
2019-01-10 03:07:46 +00:00
|
|
|
user_download_bytes: {
|
|
|
|
type: userStatSet
|
|
|
|
statName: dl_total_bytes
|
|
|
|
match: {
|
|
|
|
655360: {
|
|
|
|
title: "Ought to be Enough"
|
|
|
|
globalText: "{userName} has downloaded 640K. Ought to be enough for anyone!"
|
|
|
|
text: "You've downloaded 640K. Ought to be enough for anyone!"
|
|
|
|
points: 5
|
|
|
|
}
|
|
|
|
1474560: {
|
|
|
|
title: "Fits on a Floppy"
|
|
|
|
globalText: "{userName} has downloaded 1.44MB worth of data!"
|
|
|
|
text: "You've downloaded 1.44MB of data!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 5
|
2019-01-10 03:07:46 +00:00
|
|
|
}
|
|
|
|
104857600: {
|
|
|
|
title: "Click of Death"
|
|
|
|
globalText: "{userName} has downloaded 100MB... perhaps to a Zip Disk?"
|
|
|
|
text: "You've downloaded 100MB of data... perhaps to a Zip Disk?"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 10
|
2019-01-10 03:07:46 +00:00
|
|
|
}
|
|
|
|
681574400: {
|
2019-01-25 04:55:03 +00:00
|
|
|
title: "CD Rip"
|
2019-01-10 03:07:46 +00:00
|
|
|
globalText: "{userName} has downloaded a CD-ROM's worth of data!"
|
|
|
|
text: "You've downloaded a CD-ROM's worth of data!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 15
|
|
|
|
}
|
|
|
|
1073741824: {
|
|
|
|
title: "Like One Hundred Floppys, Man"
|
|
|
|
globalText: "{userName} has downloaded {achievedValue!sizeWithAbbr} of data!"
|
|
|
|
text: "You've downloaded {achievedValue!sizeWithAbbr} of data!"
|
|
|
|
points: 25
|
|
|
|
}
|
|
|
|
5368709120: {
|
|
|
|
title: "That's a Lot of Bits!"
|
|
|
|
globalText: "{userName} has downloaded {achievedValue!sizeWithAbbr} of data!"
|
|
|
|
text: "You've downloaded {achievedValue!sizeWithAbbr} of data!"
|
2019-01-10 03:07:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-06 04:17:53 +00:00
|
|
|
user_door_runs: {
|
2019-01-07 04:56:12 +00:00
|
|
|
type: userStatSet
|
2019-01-06 04:17:53 +00:00
|
|
|
statName: door_run_total_count
|
|
|
|
match: {
|
|
|
|
1: {
|
|
|
|
title: "Nostalgia Toe Dip",
|
|
|
|
globalText: "{userName} ran a door!"
|
|
|
|
text: "You ran a door!"
|
|
|
|
points: 5
|
|
|
|
},
|
|
|
|
10: {
|
|
|
|
title: "This is Kinda Fun"
|
|
|
|
globalText: "{userName} ran {achievedValue} doors!"
|
|
|
|
text: "You've run {achievedValue} doors!"
|
|
|
|
points: 10
|
|
|
|
}
|
|
|
|
50: {
|
|
|
|
title: "Gamer"
|
|
|
|
globalText: "{userName} ran {achievedValue} doors!"
|
|
|
|
text: "You've run {achievedValue} doors!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 20
|
2019-01-06 04:17:53 +00:00
|
|
|
}
|
|
|
|
100: {
|
2019-01-25 04:55:03 +00:00
|
|
|
title: "Trying Them All"
|
2019-01-06 04:17:53 +00:00
|
|
|
globalText: "{userName} must really like textmode and has run {achievedValue} doors!"
|
|
|
|
text: "You've run {achievedValue} doors! You must really like textmode!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 50
|
2019-01-06 04:17:53 +00:00
|
|
|
}
|
|
|
|
200: {
|
|
|
|
title: "Dropfile Enthusiast"
|
|
|
|
globalText: "{userName} the dropfile enthusiast ran {achievedValue} doors!"
|
|
|
|
text: "You're a dropfile enthusiast! You've run {achievedValue} doors!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 55
|
2019-01-06 04:17:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-25 04:55:03 +00:00
|
|
|
user_individual_door_run_minutes: {
|
2019-01-07 04:56:12 +00:00
|
|
|
type: userStatInc
|
2019-01-06 04:17:53 +00:00
|
|
|
statName: door_run_total_minutes
|
2019-02-10 20:39:27 +00:00
|
|
|
retroactive: false
|
2019-01-06 04:17:53 +00:00
|
|
|
match: {
|
|
|
|
1: {
|
|
|
|
title: "Nevermind!"
|
2019-01-11 03:34:52 +00:00
|
|
|
globalText: "{userName} ran a door for {achievedValue!durationMinutes}. Guess it's not their thing!"
|
|
|
|
text: "You ran a door for only {achievedValue!durationMinutes}. Not your thing?"
|
2019-01-06 04:17:53 +00:00
|
|
|
points: 5
|
|
|
|
}
|
|
|
|
10: {
|
|
|
|
title: "It's OK I Guess"
|
2019-01-11 03:34:52 +00:00
|
|
|
globalText: "{userName} ran a door for {achievedValue!durationMinutes}!"
|
|
|
|
text: "You ran a door for {achievedValue!durationMinutes}!"
|
2019-01-06 04:17:53 +00:00
|
|
|
points: 10
|
|
|
|
}
|
|
|
|
30: {
|
|
|
|
title: "Good Game"
|
2019-01-11 03:34:52 +00:00
|
|
|
globalText: "{userName} ran a door for {achievedValue!durationMinutes}!"
|
|
|
|
text: "You ran a door for {achievedValue!durationMinutes}!"
|
2019-01-06 04:17:53 +00:00
|
|
|
points: 20
|
|
|
|
}
|
|
|
|
60: {
|
2019-01-25 04:55:03 +00:00
|
|
|
title: "What? Limited Turns?!"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} in a door!"
|
|
|
|
text: "You've spent {achievedValue!durationMinutes} in a door!"
|
|
|
|
points: 25
|
|
|
|
}
|
|
|
|
120: {
|
|
|
|
title: "It's the Only One I Know!"
|
2019-01-11 03:34:52 +00:00
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} in a door!"
|
|
|
|
text: "You've spent {achievedValue!durationMinutes} in a door!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 50
|
|
|
|
}
|
|
|
|
240: {
|
|
|
|
title: "Possible Addict"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} in a door!"
|
|
|
|
text: "You've spent {achievedValue!durationMinutes} in a door!"
|
|
|
|
points: 55
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
user_door_run_total_minutes: {
|
|
|
|
type: userStatIncNewVal
|
|
|
|
statName: door_run_total_minutes
|
|
|
|
match: {
|
|
|
|
10: {
|
|
|
|
title: "Enough for the Instructions"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} playing doors!"
|
|
|
|
text: "You've spent {achievedValue!durationMinutes} playing doors!"
|
|
|
|
points: 10
|
|
|
|
}
|
|
|
|
30: {
|
|
|
|
title: "Probably Just L.O.R.D."
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} playing doors!"
|
|
|
|
text: "You've spent {achievedValue!durationMinutes} playing doors!"
|
|
|
|
points: 20
|
|
|
|
}
|
|
|
|
60: {
|
|
|
|
title: "Retro or Bust"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} playing doors!"
|
|
|
|
text: "You've spent {achievedValue!durationMinutes} playing doors!"
|
2019-01-06 04:17:53 +00:00
|
|
|
points: 25
|
|
|
|
}
|
2019-01-25 04:55:03 +00:00
|
|
|
240: {
|
|
|
|
title: "Textmode Dragon Slayer"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} playing doors!"
|
|
|
|
text: "You've spent {achievedValue!durationMinutes} playing doors!"
|
|
|
|
points: 50
|
|
|
|
}
|
2019-01-06 04:17:53 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-11 03:34:52 +00:00
|
|
|
|
|
|
|
user_total_system_online_minutes: {
|
|
|
|
type: userStatSet
|
|
|
|
statName: minutes_online_total_count
|
|
|
|
match: {
|
|
|
|
30: {
|
|
|
|
title: "Just Poking Around"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} on {boardName}!"
|
|
|
|
text: "You've been on {boardName} for a total of {achievedValue!durationMinutes}!"
|
|
|
|
points: 5
|
|
|
|
}
|
|
|
|
60: {
|
|
|
|
title: "Mildly Interesting"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} on {boardName}!"
|
|
|
|
text: "You've been on {boardName} for a total of {achievedValue!durationMinutes}!"
|
|
|
|
points: 15
|
|
|
|
}
|
|
|
|
120: {
|
|
|
|
title: "Nothing Better to Do"
|
|
|
|
globalText: "{userName} has spent {achievedValue!durationMinutes} on {boardName}!"
|
|
|
|
text: "You've been on {boardName} for a total of {achievedValue!durationMinutes}!"
|
|
|
|
points: 25
|
|
|
|
}
|
|
|
|
1440: {
|
|
|
|
title: "Idle Bot"
|
|
|
|
globalText: "{userName} is probably a bot. They've spent {achievedValue!durationMinutes} on {boardName}!"
|
|
|
|
text: "You're a bot, aren't you? You've been on {boardName} for a total of {achievedValue!durationMinutes}!"
|
2019-01-25 04:55:03 +00:00
|
|
|
points: 55
|
2019-01-11 03:34:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-05 19:18:44 +00:00
|
|
|
}
|
2019-01-25 04:55:03 +00:00
|
|
|
}
|