Initial commit

This commit is contained in:
VortrexFTW
2020-09-04 15:56:19 -05:00
commit c536fcd6ef
245 changed files with 14997 additions and 0 deletions

30
scripts/server/const.js Normal file
View File

@@ -0,0 +1,30 @@
// ===========================================================================
// Asshat Gaming RP
// http://asshatgaming.com
// © 2020 Asshat Gaming
// ---------------------------------------------------------------------------
// FILE: const.js
// DESC: Provides constants
// TYPE: Server (JavaScript)
// ===========================================================================
// Sphere types
const AG_SPHERE_HOUSE = 1;
const AG_SPHERE_BUSINESS = 2;
// Prompts (used for client GUI prompt responses)
const AG_PROMPT_CREATEFIRSTCHAR = 1;
// Job Types
const AG_JOB_NONE = 0;
const AG_JOB_POLICE = 1;
const AG_JOB_MEDICAL = 2;
const AG_JOB_FIRE = 3;
const AG_JOB_BUS = 4;
const AG_JOB_TAXI = 5;
const AG_JOB_GARBAGE = 6;
const AG_JOB_WEAPON = 7;
const AG_JOB_DRUG = 8;
// Pickup Owner Types
const AG_PICKUP_JOB = 1;