Natives¶
Remove Citizen. prefix where possible¶
Do not use GetHashKey()¶
Replace string hashes with backticks¶
Replace GetHashKey(variable) with joaat(variable)¶
Use Vector3 math rather than GetDistanceBetweenCoords()¶
GOOD
local coord1 = vector3(1, 1, 1)
local coord2 = vector3(0, 0, 0)
local distance = #(coord1 - coord2)