the problem is "self iprintlnbold("test");" message doesnt show up i mean everything with "self"
Thread is on callback_playerkilled and gametype is ctfCode:Messages( sMeansOfDeath, attacker ) { if(sMeansOfDeath == "MOD_HEAD_SHOT") { distance = distance(Attacker.origin , self.origin); //Inches meters = distance * 0.0254; //Meters feet = distance / 12; //Feet if(!isDefined("shm_metric") || getcvar("shm_metric") == "") setcvar("shm_metric", "meters"); if(getCVar("shm_metric") != "feet") { iprintln("^7" + attacker.name + "^7 killed ^1" + self.name + "^7 with a headshot over a distance of ^1" + meters + " meters!"); } if(getCVar("shm_metric") == "feet") { iprintln("^7" + attacker.name + "^7 killed ^1" + self.name + "^7 with a headshot over a distance of ^1" + feet + " feet!"); } } if(!isDefined(attacker.pers["kill_spree"])) attacker.pers["kill_spree"] = 0; if( !isDefined( attacker.killstreakText )) attacker thread CreateKillstreakHUD(); self.pers["kill_spree"] = 0; attacker.pers["kill_spree"]++; self.killcount = attacker.pers["kill_spree"]; attacker UpdateKillstreakHUD( attacker.pers["kill_spree"] ); if(self.killcount == 3) iprintln("^7" + attacker.name + "^7 is on 3 killstreak ^1"); self iprintlnbold("test"); if(self.killcount == 5) iprintln("^7" + attacker.name + "^7 is on 5 killstreak ^1"); if(self.killcount == 7) iprintln("^7" + attacker.name + "^7 is on 7 killstreak ^1"); if(self.killcount == 10) iprintln("^7" + attacker.name + "^7 is on 10 killstreak ^1"); if(self.killcount == 20) iprintln("^7" + attacker.name + "^7 is on 20 killstreak ^1"); }
Code:else { attackerNum = attacker getEntityNumber(); doKillcam = true; if(self.pers["team"] == attacker.pers["team"]) // killed by a friendly attacker.score--; else attacker.score++; thread maps\mp\gametypes\_shmod::Messages( sMeansOfDeath, attacker); }



 
			
			 
					
					
					
						 Reply With Quote
Reply With Quote