//////////////////////////////////////////////////////////////////////////////////// // 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"] = &"Score "; init(hud, end) { if (hud || end) { // Common labels: game["svrSL"]["score"] = &"Score "; game["svrSL"]["awards"] = &"Awards "; game["svrSL"]["kills"] = &"Kills "; game["svrSL"]["deaths"] = &"Deaths "; game["svrSL"]["assist"] = &"Assists "; game["svrSL"]["ratio"] = &"Ratio "; game["svrSL"]["spree"] = &"Spree "; game["svrSL"]["head"] = &"Headshot "; game["svrSL"]["knife"] = &"Knife "; game["svrSL"]["lkill"] = &"Kill(m) "; game["svrSL"]["lhead"] = &"Head(m) "; } if (end) { // Endstats only: game["svrSL"]["title1"] = &"Beste speler in deze map"; game["svrSL"]["title2"] = &"Jouw stats in deze map"; game["svrSL"]["capture"] = &"Captures "; game["svrSL"]["defend"] = &"Defend "; game["svrSL"]["defuse"] = &"Defuse "; game["svrSL"]["destroy"] = &"Destroy "; game["svrSL"]["pickup"] = &"Pickups "; game["svrSL"]["plant"] = &"Plants "; game["svrSL"]["returns"] = &"Returns "; game["svrSL"]["allied"] = &"Allied "; game["svrSL"]["alive"] = &"Alive "; game["svrSL"]["bspree"] = &"Best Spree "; game["svrSL"]["exp"] = &"Explosives "; game["svrSL"]["hits"] = &"Accuracy "; } }