Comments and organization

This commit is contained in:
Vortrex
2022-03-21 10:31:03 -05:00
parent 03bad1c341
commit 8e96b01ceb
5 changed files with 29 additions and 17 deletions

View File

@@ -2,7 +2,7 @@
// Vortrex's Roleplay Resource
// https://github.com/VortrexFTW/gtac_roleplay
// ===========================================================================
// FILE: v.js
// FILE: utilities.js
// DESC: Provides shared utilities
// TYPE: Shared (JavaScript)
// ===========================================================================
@@ -267,6 +267,8 @@ let serverColours = {
},
};
// ===========================================================================
let serverEmoji = [
[":hash:", "#"],
[":zero:", "0"],
@@ -1125,6 +1127,21 @@ let serverEmoji = [
// ===========================================================================
let placesOfOrigin = [
"Liberty City",
"Vice City",
"Los Santos",
"San Fierro",
"Las Venturas",
"San Andreas",
"Blaine County",
"Red County",
"Bone County",
"Other",
];
// ===========================================================================
function getGameConfig() {
return gameData;
}