forked from hhfw1/cs_firstspawn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
26 lines (16 loc) · 1.06 KB
/
config.lua
File metadata and controls
26 lines (16 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
CodeStudio = {}
CodeStudio.useTaxi = false --Use AI Taxi or Not?
CodeStudio.SpawnPedLoc = vector3(-1044.91, -2750.2, 21.36) --If not using AI Taxi then set player spawn location
CodeStudio.Taxi = `dynasty` --Taxi Model
CodeStudio.TaxiPlate = 'CS5M' --Taxi Number Plate
CodeStudio.TaxiModded = true
CodeStudio.TaxiSpawn = vector4(-1058.48, -2713.28, 20.17, 240.05) --Taxi First Spawn Location
CodeStudio.TaxiDestination = vector4(-1087.01, -271.25, 37.32, 26.0) --Taxi Destination Lcoation
CodeStudio.SkipToNearestLoc = vector4(-1198.92, -304.74, 37.47, 284.08) --Taxi Skip Nearest Location to destination
CodeStudio.WelcomeMessage = 'Welocome To My Server'
CodeStudio.ReachedMessage = "We've reached our destination"
function Notify(msg)
SetNotificationTextEntry('STRING') --- DELETE ME IF YOU ARE USING ANOTHER SYSTEM
AddTextComponentString(msg) --- DELETE ME IF YOU ARE USING ANOTHER SYSTEM
DrawNotification(0,1) --- DELETE ME IF YOU ARE USING ANOTHER SYSTEM
end