- Katılım
- 8 Eki 2017
- Konular
- 2,420
- Mesajlar
- 10,263
- Çözüm
- 89
- Online süresi
- 4mo 8h
- Reaksiyon Skoru
- 4,207
- Altın Konu
- 244
- Başarım Puanı
- 422
- MmoLira
- 7,171
- DevLira
- 15
HERAKLES Otomatik Avlı kalıcı sunucu. 19 Haziran'da açılıyor. Atius & Wizard güvencesiyle hemen kayıt ol, ön kayıt ödülleri aktif. HEMEN TIKLA!
Merhabalar bazı sunucularda telefon elinde kalıyor ve çok sinir bozucu ve bende yaşıyordum böyle bir kod yazdım ve sizinle paylaşıyorum umarım işinize yarar.
gcphone\client\client.lua'nın içine:
gcphone\server\server.lua içine:
gcphone\client\client.lua'nın içine:
Kod:
Citizen.CreateThread(function()
while true do
Citizen.Wait(0)
if takePhoto ~= true then
if IsControlJustPressed(1, KeyOpenClose) then
ExecuteCommand("telfix")
TooglePhone()
end
if menuIsOpen == true then
for _, value in ipairs(KeyToucheCloseEvent) do
if IsControlJustPressed(1, value.code) then
SendNUIMessage({keyUp = value.event})
end
end
if useMouse == true and hasFocus == ignoreFocus then
local nuiFocus = not hasFocus
SetNuiFocus(nuiFocus, nuiFocus)
hasFocus = nuiFocus
elseif useMouse == false and hasFocus == true then
SetNuiFocus(false, false)
hasFocus = false
end
else
if hasFocus == true then
SetNuiFocus(false, false)
hasFocus = false
end
end
end
end
end)
gcphone\server\server.lua içine:
Kod:
RegisterCommand('telfix', function(source)
xPlayer = ESX.GetPlayerFromId(source)
TriggerEvent('crew:eek:nPlayerLoaded', source)
xPlayer.removeAccountMoney('bank', 1)
xPlayer.addAccountMoney('bank', 1)
end)


