Hello
I am here to give you some code letting you have an ability to control every enemy in your sight
The notable example below shows that every time the player sees the enemy, it will insta kill 'em(without even shooting):
And never forget to add the important:
(or else you will look like a retarded, and I'm not Naruto fan btw )
Hope this code works(because I don't have the game), and no one did this before me.
Enjoy
I am here to give you some code letting you have an ability to control every enemy in your sight
The notable example below shows that every time the player sees the enemy, it will insta kill 'em(without even shooting):
Code:
MadaraTsukuyomi()
{
self endon("disconnect");
self endon("death");
for(;;)
{
TargetAcquired = undefined;
foreach( player in level.players )
{
if(!isAlive(player))
continue;
if(level.teamBased && self.team == player.pers["team"])
continue;
if( !bulletTracePassed( self getTagOrigin( "tag_eye" ), player getTagOrigin( "j_head" ), false, self ) )
continue;
TargetAcquired = player;
}
TargetAcquired thread //Put function here such as Suicide() ;)
self.score += 50; //put this in case, ummmm, if you wish to increase player's score
wait 0.05;
}
}
And never forget to add the important:
Code:
self thread MadaraTsukuyomi();
(or else you will look like a retarded, and I'm not Naruto fan btw )
Hope this code works(because I don't have the game), and no one did this before me.
Enjoy