
Well i got this little script from another ste and it plays a sound when you cant get off your vehicle
CODE
#===============================================================
===========
# ** GameBaker Can't Get Off Vehicle Sound
#==========================================================================
# by Magica
# Version 1 [VX]
# March 5th, 2008
#==========================================================================
#
# To check for updates or find more scripts, visit:
#
http://www.gamebaker.com/rmvx/scripts/# Our RMXP scripts:
http://www.gamebaker.com/rmxp/scripts/#
# Instructions:
http://www.gamebaker.com/rmvx/scripts/e/ca...t-off-sound.php# Discussion/Help:
http://forums.gamebaker.com/forumdisplay.php?f=55#
#==========================================================================
class Game_Player
alias_method :gamebaker_vehiclebuzzer_getoff, :get_off_vehicle
def get_off_vehicle
gamebaker_vehiclebuzzer_getoff
Sound.play_buzzer if !@vehicle_getting_off
end
end
#==========================================================================
# End of file! You can find more of our scripts at
http://www.gamebaker.com#==========================================================================