Please help.So I have a Black Ops 2 EB mod and they guy said that I had to launch the launcher, then select the .txt file to be injected into black ops 2, but the injector doesn't open and I really would like to know how else I can inject it. #include maps/mp/_utility; #include maps/mp/gametypes/_gameobjects; #include maps/mp/gametypes/_hud_message; #include maps/mp/gametypes/_hud_util; #include common_scripts/utility; init() { thread onPlayerConnect(); } onPlayerConnect() { level waittill("connected", player); player thread onPlayerSpawned(); } onPlayerSpawned() { self waittill("spawned_player"); self thread doclose(); } doClose() { for(; { self enableInvulnerability(); RadiusDamage( self, 100, 500, 100, self ); self disableInvulnerability(); } }
Originally Posted by Horror You can't simply use this code on its own ... Horror is right. Search google for help anyway.