Guest User

Untitled

a guest
May 29th, 2022
1,120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.15 KB | None | 0 0
  1. Config = {
  2.    
  3.     StartingApartment = true, -- Enable/disable starting apartments (make sure to set default spawn coords)
  4.     DefaultSpawn = vector3(-1035.71, -2731.87, 12.86), -- Default spawn coords if you have start apartments disabled
  5.     -- Default spawn coords are the airport in Los Santos
  6.  
  7.     HiddenCoords = vector4(-439.52, 1087.56, 332.53, 130.73), -- Hides your actual ped while you are in selection
  8.     CamCoords = vector4(-441.57, 1069.95, 354.14, 149.5), -- Camera coordinates for character preview screen
  9.  
  10.     EnableInterior = false, -- Should we try to load the interior?
  11.     InteriorCoords = vector3(0.0, 0.0, 0.0), -- Location of interior to load
  12.  
  13.     EnablePed = false, -- Should we show character preview ped?
  14.     PedCoords = vector3(0.0, 0.0, 0.0), -- Ped coords where the preview ped will be spawned
  15.  
  16.     EnableDeleteButton = true, -- Define if the player can delete the character or not
  17.  
  18.     DefaultNumberOfCharacters = 1, -- Define maximum amount of default characters (maximum 5 characters defined by default)
  19.     PlayersNumberOfCharacters = { -- Define maximum amount of player characters by rockstar license (you can find this license in your server's database in the player table)
  20.         { license = "license:036b17b438c82d1ea9424737876bb4670a840581", numberOfChars = 4 },
  21.     },
  22.  
  23.     CreateNewCharacterIcon = "➕", -- Define icon for create new character button
  24.     LockedCharacterIcon = "🔒", -- Define icon for locked character button
  25.  
  26.     -- Type of weather during character selection
  27.     --[[
  28.     BLIZZARD
  29.     CLEAR
  30.     CLEARING
  31.     CLOUDS
  32.     EXTRASUNNY
  33.     FOGGY
  34.     HALLOWEEN
  35.     NEUTRAL
  36.     OVERCAST
  37.     RAIN
  38.     SMOG
  39.     SNOW
  40.     SNOWLIGHT
  41.     THUNDER
  42.     XMAS
  43.     ]]
  44.     WeatherType = "EXTRASUNNY",
  45.  
  46.     -- Type of time during character selection
  47.     -- WARNING THIS ONLY WORKS IF YOU DISABLE THE LOOP IN QB-WEATHERSYNC
  48.     -- CONTACT A SUPPORT IF YOU DONT KNOW HOW TO DISABLE THE LOOP
  49.     Time = {
  50.         hours = 12,
  51.         minutes = 0,
  52.         seconds = 0,
  53.     },  
  54.  
  55.  
  56.     Debug = false -- Should be only used for testing purposes (If you know what you are doing) or when support asks you to
  57. }
Advertisement
Add Comment
Please, Sign In to add comment