0 Üye ve 1 Ziyaretçi konuyu incelemekte.
function motor() local vehicle = getPedOccupiedVehicle( localPlayer ) if ( vehicle ) and ( getVehicleController( vehicle ) == localPlayer ) then if ( getVehicleEngineState( vehicle ) ) then setVehicleEngineState( vehicle, false ) outputChatBox( "Araç motoru artık kapalı!", 0, 255, 0 ) else setVehicleEngineState( vehicle, true ) outputChatBox( "Araç motoru artık açık!", 0, 255, 0 ) end endendaddCommandHandler("arabacalistir",motor)