0 Üye ve 1 Ziyaretçi konuyu incelemekte.
function ackapa()if getPedOccupiedVehicleSeat (player) == 0 thenelseif (guiGetVisible (basma) == true) then guiSetVisible(basma, false)showCursor(false)elseif (guiGetVisible (basma) == false) then guiSetVisible(basma, true) showCursor(true)endendbindKey("F5", "down", ackapa) --> Panelin açma kapama tuşu.
Test etmedim.Kod: luafunction ackapa()if getPedOccupiedVehicleSeat (player) == 0 thenelseif (guiGetVisible (basma) == true) then guiSetVisible(basma, false)showCursor(false)elseif (guiGetVisible (basma) == false) then guiSetVisible(basma, true) showCursor(true)endendbindKey("F5", "down", ackapa) --> Panelin açma kapama tuşu.
function ackapa()if not getPedOccupiedVehicleSeat (getLocalPlayer()) == 0 then return endelseif (guiGetVisible (paneladi) == true) then guiSetVisible(paneladi, false)showCursor(false)elseif (guiGetVisible (paneladi) == false) then guiSetVisible(paneladi, true) showCursor(true)endendbindKey("F5", "down", ackapa) --> Panelin açma kapama tuşu.
Server bölümünde getPedOccupiedVehicleSeat bu kodu kullanmak daha uygun olur. Server bölümünü atarsan yardımcı olabilirim.Ayrıca client bölümünde kullanmak istersen bunu dene. Ama dediğim gibi serverde kullanmak daha uygun olacaktır.Kod: luafunction ackapa()if not getPedOccupiedVehicleSeat (getLocalPlayer()) == 0 then return endelseif (guiGetVisible (paneladi) == true) then guiSetVisible(paneladi, false)showCursor(false)elseif (guiGetVisible (paneladi) == false) then guiSetVisible(paneladi, true) showCursor(true)endendbindKey("F5", "down", ackapa) --> Panelin açma kapama tuşu.
Buyur hocam srver.lua Linki görebilmek için Kayıt olun yada Giriş yapın. Teşekkür ederim.
Linki görebilmek için Kayıt olun yada Giriş yapın.
Sürücü harici kişi paneli hala kullanabiliyor
Kullanamaması gerekiyor, butona bastığında işlev görüyor mu?Ek olarak client dosyasınıda atarmısın.
function panel_ac_kapa()if getPedOccupiedVehicleSeat (getLocalPlayer()) == 1 then return outputChatBox("#cc0000Sadece araç sahibi kullanabilir.", 255, 255, 255, true)elseif (guiGetVisible(basma) == false) thenif getPedOccupiedVehicle (getLocalPlayer()) thenguiSetVisible(basma, true)showCursor(true)endelseguiSetVisible(basma, false)showCursor(false)endendbindKey("F5", "down", panel_ac_kapa)
Dostum hem tek kişi aça biliyo hemde sadece araçtayken açılıyor.Kod: luafunction panel_ac_kapa()if getPedOccupiedVehicleSeat (getLocalPlayer()) == 1 then return outputChatBox("#cc0000Sadece araç sahibi kullanabilir.", 255, 255, 255, true)elseif (guiGetVisible(basma) == false) thenif getPedOccupiedVehicle (getLocalPlayer()) thenguiSetVisible(basma, true)showCursor(true)endelseguiSetVisible(basma, false)showCursor(false)endendbindKey("F5", "down", panel_ac_kapa)
Bunu deneyin.Linki görebilmek için Kayıt olun yada Giriş yapın.