-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
56 lines (46 loc) · 1.5 KB
/
config.lua
File metadata and controls
56 lines (46 loc) · 1.5 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Config = {}
Config.ShootAlert = true
Config.Debug = false
Config.AlertDistance = 150.0 -- Bildirim gönderilecek varsayılan maksimum mesafe
Config.BlipDuration = 10000 -- Blip'in ekranda kalma süresi (ms cinsinden)
Config.ShotCooldown = 5000 -- 2 ateşten sonra bildirimin tekrar tetiklenmemesi için gecikme süresi (ms cinsinden)
Config.AlertJobs = { --true olursa shootfire bildirimi göndermez.
police = true,
sheriff = true,
unemployed = false
}
-- Varsayılan bildirim tipleri
Config.DefaultAlerts = {
shotfire = {
title = "Ateş Edildi",
description = "Yakınlarda ateş edildi.",
notifyType = "inform",
blip = "shotfire"
},
custom = {
title = "Bildirim",
description = "Özel bildirim.",
notifyType = "inform",
blip = "custom"
}
}
-- Blip tipleri listesi
-- Tüm blip sprite ID'leri için: https://github.com/femga/rdr3_discoveries/tree/master/useful_info_from_rpfs/textures/blips
Config.Blips = {
shotfire = {
sprite = 150441873,
scale = 0.5,
label = "Ateş Edildi",
modifier = `blip_radius_search`,
color = 1,
areaSize = 10.0
},
custom = {
sprite = 1754506823,
scale = 0.5,
label = "Bildirim",
modifier = `blip_deadeye_cross`,
color = 1,
areaSize = 15.0
},
}