34 lines
999 B
JavaScript
34 lines
999 B
JavaScript
// ===========================================================================
|
|
// Asshat-Gaming Roleplay
|
|
// https://github.com/VortrexFTW/gtac_asshat_rp
|
|
// Copyright (c) 2020 Asshat-Gaming (https://asshatgaming.com)
|
|
// ---------------------------------------------------------------------------
|
|
// FILE: const.js
|
|
// DESC: Provides constants
|
|
// TYPE: Shared (JavaScript)
|
|
// ===========================================================================
|
|
|
|
// Label Types
|
|
const AG_LABEL_JOB = 1;
|
|
const AG_LABEL_BUSINESS = 2;
|
|
const AG_LABEL_HOUSE = 3;
|
|
const AG_LABEL_EXIT = 3;
|
|
|
|
// Log Levels
|
|
const LOG_ALL = -1;
|
|
const LOG_NONE = 0;
|
|
const LOG_INFO = 1;
|
|
const LOG_WARN = 2;
|
|
const LOG_ERROR = 4;
|
|
const LOG_VERBOSE = 8;
|
|
const LOG_DEBUG = 16;
|
|
|
|
// Weapon Damage Event Types
|
|
const AG_WEAPON_DAMAGE_EVENT_NONE = 0;
|
|
const AG_WEAPON_DAMAGE_EVENT_NORMAL = 1;
|
|
const AG_WEAPON_DAMAGE_EVENT_TAZER = 2;
|
|
const AG_WEAPON_DAMAGE_EVENT_EXTINGUISH = 3;
|
|
const AG_WEAPON_DAMAGE_EVENT_MACE = 4;
|
|
|
|
// Games
|
|
const AG_GAME_GTA_V = 50; |