-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathConfig.txt
More file actions
32 lines (27 loc) · 2.44 KB
/
Copy pathConfig.txt
File metadata and controls
32 lines (27 loc) · 2.44 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
27
28
29
30
31
gDrivePermit = 0; // Who is allowed to drive car: 0=everyone, 1=owner only, 2=rez group
driverList = [ ]; // list of UUIDs allowed to drive (whitelist), in double-quotes, comma delimited
gSitMessage = "Drive"; // replaces "Sit" in the right-click menu. Note this goes back to "Sit" after driver sits.
gUrNotAllowedMessage = "Vehicle is Locked"; // Message to chat window if not allowed
maxGear = 3; // [integer] highest gear that can be shifted to, max 11 *note* 0=1st gear, 11=12th gear
lowestGear = 0; // [integer] lowest gear that can be shifted to, min 0 *note* 0=1st gear
startGear = 0; // [integer] gear selected on sit
fallbackAbove = 6; // [integer] releasing forward button when higher than this gear falls back to this
turn_in_place_speed = 2; // [float] left-right rotation speed when not moving forward. Set to 0 to disable.
turnList = [ ]; // [list of floats] Empty list uses default values; Override defaults with this list
speedList = [ ]; // [list of floats] Empty list uses default values; Override defaults with this list
tilt_push = 0; // [float] side force pushing into the turn, typical range 5-20, 0 to disable
enableCamera = TRUE; // Whether or not to enable camera controls
CamDist = 10; // [float] How far back you want the camera positioned. Typically 2x lookAhead
CamPitch = 20.0; // [float] Angle looking down. Range is -45 to 80 Degrees
lookAhead = 5.0; // [float] How far in front of avatar to focus camera. Range is -10 to 10 meters
auto_park_time = 0; // [float] Delay before auto-return in seconds. Set to 0 to disable.
click_to_pause = FALSE; // If TRUE will allow driver to click vehicle to toggle engine and lights
sit_message = "The car has 4 gears. Use up/down controls to change gears."; // Chat window message shown to driver when sitting
aggressive_gear = 3; // [integer] This gear and above play "gSoundAggressive", below this gear plays "gSoundSlow"
gSoundStartup = ""; // sound made when driver seated (UUID or name)
gSoundIdle = ""; // looped sound when not moving (UUID or name)(UUID or name)
gSoundSlow = ""; // looped sound when driving forward and gear below aggresive_gear (UUID or name)
gSoundAggressive = ""; // looped forward sound when at or above aggresive_gear (UUID or name)
gSoundRev = ""; // looped sound when driving in reverse (UUID or name)
gSoundStop = ""; // sound when the driver stands (UUID or name)
gSoundAlarm = ""; // sound if someone not authorized tries to drive car (UUID or name)