You are viewing our Forum Archives. To view or take place in current topics click here.
is explosive bullets infectable on tu8?
Posted:

is explosive bullets infectable on tu8?Posted:

GuztenBro
  • New Member
Status: Offline
Joined: Feb 05, 201311Year Member
Posts: 11
Reputation Power: 0
Status: Offline
Joined: Feb 05, 201311Year Member
Posts: 11
Reputation Power: 0
yeye the title says it all
#2. Posted:
Rgh-Xp-Lobby
  • Wise One
Status: Offline
Joined: Jan 27, 201311Year Member
Posts: 562
Reputation Power: 24
Status: Offline
Joined: Jan 27, 201311Year Member
Posts: 562
Reputation Power: 24
do u have the explosive bullets code?? and no i dont think so if u do can i have the code please
#3. Posted:
GuztenBro
  • New Member
Status: Offline
Joined: Feb 05, 201311Year Member
Posts: 11
Reputation Power: 0
Status: Offline
Joined: Feb 05, 201311Year Member
Posts: 11
Reputation Power: 0
nahh im sorry i dont have it ;/ but i want it as an infection so bad
#4. Posted:
Rgh-Xp-Lobby
  • Wise One
Status: Offline
Joined: Jan 27, 201311Year Member
Posts: 562
Reputation Power: 24
Status: Offline
Joined: Jan 27, 201311Year Member
Posts: 562
Reputation Power: 24
ohh ok i need the dvar code for it
#5. Posted:
Dimeh4x
  • Powerhouse
Status: Offline
Joined: Nov 28, 201013Year Member
Posts: 419
Reputation Power: 16
Status: Offline
Joined: Nov 28, 201013Year Member
Posts: 419
Reputation Power: 16
Rgh-Xp-Lobby wrote ohh ok i need the dvar code for it


would this be it?

ExplosiveBullets()
{
self endon ( "death" );
for(;;)
{
self waittill ( "weapon_fired" );
forward = self getTagOrigin("j_head");
end = self thread vector_scal(anglestoforward(self getPlayerAngles()),1000000);
SPLOSIONlocation = BulletTrace( forward, end, 0, self )[ "position" ];
level.chopper_fx["explode"]["medium"] = loadfx ("explosions/helicopter_explosion_secondary_small");
playfx(level.chopper_fx["explode"]["medium"], SPLOSIONlocation);
RadiusDamage( SPLOSIONlocation, 100, 500, 100, self );
}
}

vector_scal(vec, scale)
{
vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);
return vec;
}
#6. Posted:
Rgh-Xp-Lobby
  • Wise One
Status: Offline
Joined: Jan 27, 201311Year Member
Posts: 562
Reputation Power: 24
Status: Offline
Joined: Jan 27, 201311Year Member
Posts: 562
Reputation Power: 24
Offline- wrote
Rgh-Xp-Lobby wrote ohh ok i need the dvar code for it


would this be it?

ExplosiveBullets()
{
self endon ( "death" );
for(;
{
self waittill ( "weapon_fired" );
forward = self getTagOrigin("j_head");
end = self thread vector_scal(anglestoforward(self getPlayerAngles()),1000000);
SPLOSIONlocation = BulletTrace( forward, end, 0, self )[ "position" ];
level.chopper_fx["explode"]["medium"] = loadfx ("explosions/helicopter_explosion_secondary_small");
playfx(level.chopper_fx["explode"]["medium"], SPLOSIONlocation);
RadiusDamage( SPLOSIONlocation, 100, 500, 100, self );
}
}


thanks bro I LOVE YOU LOL NO HOMO!!
#7. Posted:
Dimeh4x
  • Christmas!
Status: Offline
Joined: Nov 28, 201013Year Member
Posts: 419
Reputation Power: 16
Status: Offline
Joined: Nov 28, 201013Year Member
Posts: 419
Reputation Power: 16
Rgh-Xp-Lobby wrote
Offline- wrote
Rgh-Xp-Lobby wrote ohh ok i need the dvar code for it


would this be it?

ExplosiveBullets()
{
self endon ( "death" );
for(;
{
self waittill ( "weapon_fired" );
forward = self getTagOrigin("j_head");
end = self thread vector_scal(anglestoforward(self getPlayerAngles()),1000000);
SPLOSIONlocation = BulletTrace( forward, end, 0, self )[ "position" ];
level.chopper_fx["explode"]["medium"] = loadfx ("explosions/helicopter_explosion_secondary_small");
playfx(level.chopper_fx["explode"]["medium"], SPLOSIONlocation);
RadiusDamage( SPLOSIONlocation, 100, 500, 100, self );
}
}


thanks bro I LOVE YOU LOL NO HOMO!!


I hope it's correct.. Try that I found it on se7ensins
#8. Posted:
XeTeePee
  • Junior Member
Status: Offline
Joined: Aug 15, 201212Year Member
Posts: 64
Reputation Power: 2
Status: Offline
Joined: Aug 15, 201212Year Member
Posts: 64
Reputation Power: 2
its not infectable. Never was and never will be
#9. Posted:
Hugh
  • Prospect
Status: Offline
Joined: Apr 13, 201212Year Member
Posts: 628
Reputation Power: 36
Status: Offline
Joined: Apr 13, 201212Year Member
Posts: 628
Reputation Power: 36
Thought I'd just say that the one posted above me is for tu6 and wouldn't work on Tu8


Here is the closest thing to it ;

int PlayerState(int ClientIndex)
{
return(0x830CBF80 + (ClientIndex * 0x3700));

}


void ShootEquipmentHG(int client) // called like ; ShootEquipment(-1);
{
*(int *)(PlayerState(client) + 0x2BC) = 0x1A;
}
#10. Posted:
vKraze
  • TTG Senior
Status: Offline
Joined: Oct 16, 201113Year Member
Posts: 1,116
Reputation Power: 52
Status: Offline
Joined: Oct 16, 201113Year Member
Posts: 1,116
Reputation Power: 52
Rgh-Xp-Lobby wrote
Offline- wrote
Rgh-Xp-Lobby wrote ohh ok i need the dvar code for it


would this be it?

ExplosiveBullets()
{
self endon ( "death" );
for(;
{
self waittill ( "weapon_fired" );
forward = self getTagOrigin("j_head");
end = self thread vector_scal(anglestoforward(self getPlayerAngles()),1000000);
SPLOSIONlocation = BulletTrace( forward, end, 0, self )[ "position" ];
level.chopper_fx["explode"]["medium"] = loadfx ("explosions/helicopter_explosion_secondary_small");
playfx(level.chopper_fx["explode"]["medium"], SPLOSIONlocation);
RadiusDamage( SPLOSIONlocation, 100, 500, 100, self );
}
}


thanks bro I LOVE YOU LOL NO HOMO!!


dude, this is a script, not a dvar
:facepalm:
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.