Fix indents spaces->tabs
This commit is contained in:
parent
68a88e4422
commit
27e320ce55
4 changed files with 9 additions and 9 deletions
|
@ -36,8 +36,8 @@ RegisterCommand('car', function(source, args)
|
|||
-- Inform vehicle spawned
|
||||
TriggerEvent('chat:addMessage', {
|
||||
color = {0,255,0},
|
||||
args = { 'Tässä pyytämäsi upouusi ' .. vehicle }
|
||||
})
|
||||
args = { 'Tässä pyytämäsi upouusi ' .. vehicle }
|
||||
})
|
||||
|
||||
-- Cleaning up. Let R* handle despawning
|
||||
SetModelAsNoLongerNeeded(vehicle)
|
||||
|
|
|
@ -5,8 +5,8 @@ RegisterCommand('die', function(source, args)
|
|||
-- Chat about heart failure
|
||||
TriggerEvent('chat:addMessage', {
|
||||
color = {255,0,0},
|
||||
args = { 'Sydämesi petti' }
|
||||
})
|
||||
args = { 'Sydämesi petti' }
|
||||
})
|
||||
|
||||
end, false)
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ end, false)RegisterCommand('wpn', function(source, args)
|
|||
giveGrantedWpn()
|
||||
TriggerEvent('chat:addMessage', {
|
||||
color = {255,255,0},
|
||||
args = { 'Hernepyssynne, olkaa hyvä.' }
|
||||
})
|
||||
args = { 'Hernepyssynne, olkaa hyvä.' }
|
||||
})
|
||||
end, false)
|
||||
AddEventHandler('playerSpawned', function()
|
||||
giveGrantedWpn()
|
||||
|
|
|
@ -5,8 +5,8 @@ RegisterCommand('pos', function(source, args)
|
|||
local pos = GetEntityCoords(ped)
|
||||
|
||||
-- tell coordinates
|
||||
TriggerEvent('chat:addMessage', {
|
||||
args = { pos.x .. "\n" .. pos.y.. "\n" .. pos.z }
|
||||
})
|
||||
TriggerEvent('chat:addMessage', {
|
||||
args = { pos.x .. "\n" .. pos.y.. "\n" .. pos.z }
|
||||
})
|
||||
|
||||
end, false)
|
Loading…
Reference in a new issue