+
local busX, busY, busZ = 2486.33398, -1656.53784, 13.77586
local bus = createVehicle( 431, busX, busY, busZ, 0, 0, 90 )
local pedX, pedY, pedZ = 2481.24878, -1660.75574, 13.34375
local ped = createPed( 0, pedX, pedY, pedZ, 0, true )
addCommandHandler( 'dt', function( )
warpPedIntoVehicle( ped, bus )
setPedControlState( ped, 'accelerate', true )
local control = setTimer( setPedControlState, 5000, 1, ped, 'accelerate', false )
kill = setTimer( function( )
if ( getPedControlState( ped, 'accelerate' ) == false ) then
removePedFromVehicle( ped )
end
end, 15000, 1 )
end );
الكود ينقل البيد داخل الباص ويخليه يمشي لفترة ثم لما يوقف الباص ينزل منه تلقائيا