This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathkd_cli.lua
176 lines (136 loc) · 3.96 KB
/
kd_cli.lua
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
--[[
KD_Display
Created by MichaelCoding25
MIT License
Copyright (c) 2021 MichaelCoding25
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
--]]
-- VARIABLES
local KILLS = 0
local DEATHS = 0
local KD = 0
local kdShow = true
-- COMMANDS
RegisterCommand('kd', function()
TriggerEvent('chat:addMessage', {
color = { 255, 0, 0},
multiline = true,
args = {"[Kills]", KILLS}
})
TriggerEvent('chat:addMessage', {
color = { 255, 0, 0},
multiline = true,
args = {"[Deaths]", DEATHS}
})
TriggerEvent('chat:addMessage', {
color = { 255, 0, 0},
multiline = true,
args = {"[KD]", KD}
})
end)
RegisterCommand('kdtoggle', function()
kdShow = (not kdShow)
end)
-- THREADS
-- Main Thread
Citizen.CreateThread(function()
TriggerEvent('chat:addSuggestion', '/kd', 'Displays your K/D in the chat')
TriggerEvent('chat:addSuggestion', '/kdtoggle', 'Toggles your K/D display on / off')
-- Wait a single second before sending data NUI message
Citizen.Wait(1000);
SendNUIMessage({
type = 'KD:DATA',
position = config.position,
kills = config.kills,
deaths = config.deaths,
kd = config.kd
});
while true do
Citizen.Wait(1000)
if kdShow == true then
SendNUIMessage({
type = 'KD:DISPLAY',
active = true,
kills = KILLS,
deaths = DEATHS,
kd = KD
});
else
SendNUIMessage({
type = 'KD:DISPLAY',
active = false
});
end
end
end)
-- Death Thread
Citizen.CreateThread(function()
local wasDead = false
while true do
Citizen.Wait(0)
if IsEntityDead(PlayerPedId()) and wasDead == false then
Citizen.Wait(500)
wasDead = true
local killerPed = GetPedSourceOfDeath(PlayerPedId())
local killerPlayer = nil
if IsEntityAPed(killerPed) and IsPedAPlayer(killerPed) then
killerPlayer = NetworkGetPlayerIndexFromPed(killerPed)
elseif IsEntityAVehicle(killerPed) and IsEntityAPed(GetPedInVehicleSeat(killerPed, -1)) and IsPedAPlayer(GetPedInVehicleSeat(killerPed, -1)) then
killerPlayer = NetworkGetPlayerIndexFromPed(GetPedInVehicleSeat(killerPed, -1))
end
if killerPlayer ~= PlayerId() and killerPlayer ~= nil then
TriggerServerEvent(GetCurrentResourceName()..'SVKillerLog', GetPlayerServerId(killerPlayer))
end
DEATHS = DEATHS + 1
if DEATHS == 0 then
KD = KILLS
elseif KILLS == 0 then
KD = DEATHS * -1
else
KD = KILLS / DEATHS
end
KD = round(KD, 2)
elseif not IsEntityDead(PlayerPedId()) and wasDead == true then
wasDead = false
end
end
end)
-- Garbage Collection Thread
Citizen.CreateThread(function()
while true do
Citizen.Wait(30000)
collectgarbage()
end
end)
-- EVENTS
RegisterNetEvent(GetCurrentResourceName()..'CLKillerLog')
AddEventHandler(GetCurrentResourceName()..'CLKillerLog', function()
KILLS = KILLS + 1
if DEATHS == 0 then
KD = KILLS
elseif KILLS == 0 then
KD = DEATHS
else
KD = KILLS / DEATHS
end
KD = round(KD, 2)
end)
-- FUNCTIONS
function round(num, numDecimalPlaces)
local mult = 10^(numDecimalPlaces or 0)
return math.floor(num * mult + 0.5) / mult
end