mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-03 03:07:13 +02:00
* Send event info with door run time & door tag * Only if >= 45s * Only log minutes if >= 1 * No timer required; track only @ door exit time
22 lines
1 KiB
JavaScript
22 lines
1 KiB
JavaScript
/* jslint node: true */
|
|
'use strict';
|
|
|
|
//
|
|
// Common (but not all!) user log names
|
|
//
|
|
module.exports = {
|
|
NewUser : 'new_user',
|
|
Login : 'login',
|
|
Logoff : 'logoff',
|
|
UlFiles : 'ul_files', // value=count
|
|
UlFileBytes : 'ul_file_bytes', // value=total bytes
|
|
DlFiles : 'dl_files', // value=count
|
|
DlFileBytes : 'dl_file_bytes', // value=total bytes
|
|
PostMessage : 'post_msg', // value=areaTag
|
|
SendMail : 'send_mail',
|
|
RunDoor : 'run_door', // value=doorTag|unknown
|
|
RunDoorMinutes : 'run_door_minutes', // value=minutes ran
|
|
SendNodeMsg : 'send_node_msg', // value=global|direct
|
|
AchievementEarned : 'achievement_earned', // value=achievementTag
|
|
AchievementPointsEarned : 'achievement_pts_earned', // value=points earned
|
|
};
|