[Script] [ACE] [System] Balloon Sound Effect

nhoxboy73nhoxboy73 Posts: 776Registered
Balloon Sound Effect

GIỚI THIỆU
SE phát ra khi bong bóng lời thoại xuất hiện

TÍNH NĂNG
Má ơi nó ở ngay tiêu đề rồi kìa!

SCREENSHOT
No need !~

DEMO
No need~!
SCRIPT

#==============================================================================
# [VXA] SoulPour System - Balloon Sound Effect
# * Plays a sound effect when a display balloon animation for the player
# is activated.
#-------------------------------------------------------------------------
# VXA Version by: SoulPour777 / Janrae Mendoza
# Info: Porting Worale's VX to VXA script...
#==============================================================================
class Sprite_Character < Sprite_Base
 
SE_Switch = 1 #switch that activates the sound effect
SE_Ball = 'Miss' #if you want to use your own audio, it must be on the SE
#folder
SE_Vol = 80 # SE volume
SE_PI = 100 # SE pitch
 
alias soulpour777_balloonse_start start_balloon
def start_balloon
RPG::SE.new(SE_Ball,SE_Vol,SE_PI).play if
!$game_switches[SE_Switch]
soulpour777_balloonse_start
end
end
HƯỚNG DẪN
Bỏ vô và xài

CREDIT
- SoulPour777 / Janrae Mendoza
- Worale / Woratana

SOURCE:http://www.rpgmakervxace.net/topic/6981-ss-balloon-sound-effect/
Sign In or Register to comment.