Valaki, javítsa ki. pleas

Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright (c) 1997-2006 ITB CompuPhase, AMX Mod X Team
/src/php1VKpgY.sma(62) : error 037: invalid string (possibly non-terminated string)
/src/php1VKpgY.sma(62 -- 63) : warning 215: expression has no effect
/src/php1VKpgY.sma(65) : error 029: invalid expression, assumed zero
/src/php1VKpgY.sma(65 -- 67) : warning 215: expression has no effect
/src/php1VKpgY.sma(67) : error 002: only a single statement (or expression) can follow each "case"
/src/php1VKpgY.sma(67) : error 017: undefined symbol "tzene"
/src/php1VKpgY.sma(67) : fatal error 107: too many error messages on one line
Compilation aborted.
5 Errors.
    #include <amxmodx>
    #include <colorchat>
 
    #define PLUGIN "Korvegi Zene Cimmel!"
    #define VERSION "1.0"
    #define AUTHOR ""
 
 
    public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    register_event( "sony", "ctzene", "a", "2&%!MRAD_ctwin" );
    register_event( "sony", "tzene" , "a", "2&%!MRAD_terwin" );
 
    }
 
    public plugin_precache()
    {
    precache_sound("EdvanTe_music/CT1.mp3")
    precache_sound("EdvanTe_music/CT2.mp3")
    precache_sound("EdvanTe_music/CT3.mp3")
    precache_sound("EdvanTe_music/CT4.mp3")
    precache_sound("EdvanTe_music/CT5.mp3")
    precache_sound("EdvanTe_music/T1.mp3")
    precache_sound("EdvanTe_music/T2.mp3")
    precache_sound("EdvanTe_music/T3.mp3")
    precache_sound("EdvanTe_music/T4.mp3")
    precache_sound("EdvanTe_music/T5.mp3")
 
    }
 
    public ctzene()
    {
    switch (random_num(1, 8))
    {
    case 1 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/CT1.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: Rudimental - Waiting All Night feat. Ella Eyre")
 
    }
    case 2 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/CT2.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: David Guetta - She Wolf (Falling To Pieces) ft. Sia")
 
    }
    case 3 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/CT3.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: David Guetta - Titanium ft. Sia ")
 
    }
    case 4 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/CT4.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: Swedish House Mafia - Don't You Worry Child ft. John Martin")
 
    }
    case 5 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/CT5.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music ^x03- Zene Cime: Avicii - Wake Me Up"")
    }
    case 6 :
    }
 
    public tzene()
    {
    switch (random_num(1, 8))
    {
    case 1 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/T1.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: Rudimental - Free feat. Emeli Sandé")
 
    }
    case 2 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/T2.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: Parov Stelar - All Night (JSM)")
 
    }
    case 3 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/T3.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: Avicii - You Make Me (Lyric Video)")
 
    }
    case 4 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/T4.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime: Gym Class Heroes: Stereo Hearts ft. Adam Levine ")
 
    }
    case 5 :
    {
    client_cmd(0, "mp3 play sound/EdvanTe_music/T5.mp3")
    ColorChat(0, GREEN, "[EdvanTe_music] ^x03- Zene Cime:  Avicii - Silhouettes")
    }
    }
    }