Jump to content

Funkcja tylko gdy gracz jest w pojeździe


Recommended Posts

Cześć, witam znowu. Mam skrypt na kontrolę auta, otwieranie maski itp. Problem jest w tym że zbindowałem sobie go na Shift i funkcja działa również jeśli nie jesteśmy w aucie, a na Shifcie jest skakanie. Jak zrobić funkcję która działa tylko gdy gracz jest w pojeździe? Znalazłem coś takiego:

if not (isGuestAccount (getPlayerAccount (source))) and not (isPedInVehicle(source)) then

ale to jest po stronie serwera..

Link to comment

Zrobiłem tak:

function enableVehicleControl() 
   if isPedInVehicle then 
    if guiGetVisible(GUIEditor_Window[1]) == false then 
    guiSetVisible(GUIEditor_Window[1], true) 
        showCursor(true) 
    else 
        guiSetVisible(GUIEditor_Window[1], false) 
        showCursor(false) 
    end 
end 
end  

Ale niestety nie działa :( Żadnych błędów w debugu nie ma.

Link to comment
    function enableVehicleControl() 
        if isPedInVehicle ( localPlayer ) then 
            guiSetVisible( GUIEditor_Window[1], not guiGetVisible ( GUIEditor_Window[1] ) ) 
            showCursor( not isCursorShowing ( ) ) 
        end 
    end  

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...