diff --git a/scripts/server/accent.js b/scripts/server/accent.js new file mode 100644 index 00000000..739cb4a8 --- /dev/null +++ b/scripts/server/accent.js @@ -0,0 +1,42 @@ +// =========================================================================== +// Asshat-Gaming Roleplay +// https://github.com/VortrexFTW/gtac_asshat_rp +// Copyright (c) 2020 Asshat-Gaming (https://asshatgaming.com) +// --------------------------------------------------------------------------- +// FILE: accent.js +// DESC: Provides accent functions and usage +// TYPE: Server (JavaScript) +// =========================================================================== + +let accents = [ + "English", + "French", + "Russian", + "Scottish", + "Irish", + "Spanish", + "Southern American", + "Italian", + "Australian", + "Jamaican", + "Israeli", + "Dutch", + "Brazilian", + "Portuguese", + "German", + "Canadian", + "Chinese", + "Japanese", + "Turkish", + "Korean", + "Estonian", + "Sicilian", +]; + +// --------------------------------------------------------------------------- + +function getPlayerAccentText(client) { + return getClientCurrentSubAccount(client).accent; +} + +// --------------------------------------------------------------------------- \ No newline at end of file