Copy to Clipboard Test

Screen Entry SFX Code

import "std.zh"

// D0 - The SFX ID that you want to play.
ffc script OnEntrySound{
    
    void run(int sfx){
         
        // Play the sound effect.
        Game->PlaySound(sfx);    
        
        // Quit the script.
        Quit();
    }
    
}