//////////////////////////////////////////////////////////////////////////////////// // SVR Mod, for CoD Support site: http://aigaming.net | number_07@hotmail.com // //////////////////////////////////////////////////////////////////////////////////// // ADMINS: Be very careful when editing this file, as the server may crash! // Edit the text at the end of each line. Do not change anything else. // Do not use color codes. Colors are defined in the svr_stats.cfg file. // // Example: To change the word Score to Points, you would end up with this: // // game["svrSL"]["score"] = &"Points "; init(hud, end) { if (hud || end) { // Common labels: game["svrSL"]["score"] = &"Score "; game["svrSL"]["awards"] = &"Récompenses "; game["svrSL"]["kills"] = &"Frags "; game["svrSL"]["deaths"] = &"Morts "; game["svrSL"]["assist"] = &"Assistances "; game["svrSL"]["ratio"] = &"Ratio "; game["svrSL"]["spree"] = &"Suite de frag "; game["svrSL"]["head"] = &"Pleine tête "; game["svrSL"]["knife"] = &"Couteau "; game["svrSL"]["lkill"] = &"Kill(m) "; game["svrSL"]["lhead"] = &"Tête(m) "; } if (end) { // Endstats only: game["svrSL"]["title1"] = &"Meilleur joueur pour cette map"; game["svrSL"]["title2"] = &"Tes stats pour cette map"; game["svrSL"]["capture"] = &"Captures "; game["svrSL"]["defend"] = &"Defenses "; game["svrSL"]["defuse"] = &"Desamorçages"; game["svrSL"]["destroy"] = &"Destructions "; game["svrSL"]["pickup"] = &"Enlevements "; game["svrSL"]["plant"] = &"Posés de bombes "; game["svrSL"]["returns"] = &"Retours "; game["svrSL"]["allied"] = &"Alliés "; game["svrSL"]["alive"] = &"En Vie "; game["svrSL"]["bspree"] = &"Meilleur suite "; game["svrSL"]["exp"] = &"Explosifs "; game["svrSL"]["hits"] = &"Impacts "; } }