Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add carwash locations to config #373

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,8 @@ Config.Teleports = {

Config.DefaultPrice = 20 -- Default price for the carwash
Config.DirtLevel = 0.1 -- Threshold for the dirt level to be counted as dirty
Config.CarWash = { -- carwash
Config.CarWash = {
-- South Los Santos Carson Avenue
[1] = {
["label"] = "Hands Free Carwash",
["poly"] = {
Expand All @@ -335,6 +336,7 @@ Config.CarWash = { -- carwash
heading = 359
}
},
-- South Los Santos Innocence Boulevard
[2] = {
["label"] = "Hands Free Carwash",
["poly"] = {
Expand All @@ -344,6 +346,7 @@ Config.CarWash = { -- carwash
heading = 0
}
},
-- Paleto Bay Boulevard
[3] = {
["label"] = "Hands Free Carwash",
["poly"] = {
Expand All @@ -353,6 +356,7 @@ Config.CarWash = { -- carwash
heading = 315
}
},
-- Sandy Shores
[4] = {
["label"] = "Hands Free Carwash",
["poly"] = {
Expand All @@ -362,6 +366,7 @@ Config.CarWash = { -- carwash
heading = 21
}
},
-- Little Seoul gas station
[5] = {
["label"] = "Hands Free Carwash",
["poly"] = {
Expand Down
Loading