User Tools

Site Tools


custom_weaponry

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
custom_weaponry [2023/06/12 10:49] frank_lee_smithcustom_weaponry [2023/08/21 23:12] (current) frank_lee_smith
Line 96: Line 96:
  
  }  }
 +</code>
 +
 +Smoke Grenade Code
 +
 +<code csharp>
 +
 +using Editor;
 +using Sandbox;
 +namespace TerrorTown;
 +
 +[Library( "ttt_grenade_smoke" ), HammerEntity]
 +[Title( "Smoke Grenade" ), Category( "Grenades" )]
 +[EditorModel( "models/weapons/w_smokegrenade.vmdl" )]
 +public class SmokeGrenade : Throwable, IGrenade, IRandomGrenade
 +{
 +    public override string ViewModelPath => "models/weapons/v_smokegrenade.vmdl";
 +    public override string WorldModelPath => "models/weapons/w_smokegrenade.vmdl";
 +    public override void Throw()
 +    {
 +        if ( Game.IsServer )
 +        {
 +            var Nade = new SmokeGrenadeThrown();
 +            Nade.SetModel( WorldModelPath );
 +            Nade.SetupPhysicsFromModel( PhysicsMotionType.Dynamic );
 +            Nade.Position = Owner.AimRay.Position + (Owner.AimRay.Forward * 24) + (Vector3.Down * 5);
 +            Nade.PhysicsBody.Velocity = (Owner.AimRay.Forward * 900) + (Owner.AimRay.Forward.EulerAngles.ToRotation().Up * 80);
 +            Nade.PhysicsBody.Velocity += Owner.Velocity * 1f;
 +            Nade.PhysicsBody.AngularVelocity = Vector3.Random * 20;
 +            Nade.TimeOffset = TimeSinceClicked.Relative;
 +        }
 +    }
 +}
 +
 +public class SmokeGrenadeThrown : BasePhysics
 +{
 +    public float TimeOffset;
 +    public override void Spawn()
 +    {
 +        base.Spawn();
 +        SetModel( "models/weapons/w_smokegrenade.vmdl" );
 +        SetupPhysicsFromModel( PhysicsMotionType.Dynamic );
 +        TimeSinceSpawned = 0;
 +    }
 +    TimeSince TimeSinceSpawned;
 +    Particles Particle;
 +    [GameEvent.Tick.Server]
 +    void tick()
 +    {
 +        if ( TimeSinceSpawned > (5 - TimeOffset) )
 +        {
 +            if ( Particle == null )
 +            {
 +                Particle = Particles.Create( "particles/smokegrenade.vpcf", this );
 +                ParticleCleanupSystem.RegisterForCleanup( Particle );
 +            }
 +        }
 +        if ( TimeSinceSpawned > (65 - TimeOffset) )
 +        {
 +            Particle.Destroy();
 +        }
 +    }
 +}
 +
 </code> </code>
custom_weaponry.1686566963.txt.gz · Last modified: 2023/06/12 10:49 by frank_lee_smith

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki