Author Topic: Footstep Mod.  (Read 1607 times)

I would like it if there was a mod where you can hear footsteps when you or other players walk.
This would probably be easy to do.
« Last Edit: July 06, 2009, 05:52:26 PM by SirMikealot »

It's possible, but it would be as annoying as hell.

or maybe leave a trail that dissapears after 5 sec

or maybe leave a trail that dissapears after 5 sec
Do want.


or maybe leave a trail that dissapears after 5 sec
Yus

It's possible, but it would be as annoying as hell.
Make it low but high enough to slightly hear it

I thought the idea was that every time someone places there foot on the ground,
it made a foot print..

I wouldn't want to be heard because sometimes I like to sneak around.

How about if you walk(Normal keybind C) you cant hear it

/footstep and
/footprint

should be the commands to toggle on/off. Also make it an RTB pref.

or maybe leave a trail that dissapears after 5 sec
It's so easy a caveman novice coder could do it!

I believe there is a field in the datablock that lets you set what decal you leave behind when you walk. And dust and whatnot.

Ah! Here it is *blows off dust*
Quote from: Horse Code
   // Foot Prints
   //decalData   = HorseFootprint;
   //decalOffset = 0.25;

   //footPuffEmitter = LightPuffEmitter;
   footPuffNumParts = 10;
   footPuffRadius = 0.25;

   footstepSplashHeight = 0.35;

   // Footstep Sounds
//   FootSoftSound        = HorseFootFallSound;
//   FootHardSound        = HorseFootFallSound;
//   FootMetalSound       = HorseFootFallSound;
//   FootSnowSound        = HorseFootFallSound;
//   FootShallowSound     = HorseFootFallSound;
//   FootWadingSound      = HorseFootFallSound;
//   FootUnderwaterSound  = HorseFootFallSound;
   //FootBubblesSound     = FootLightBubblesSound;
   //movingBubblesSound   = ArmorMoveBubblesSound;
   //waterBreathSound     = WaterBreathMaleSound;
Turns out you can do a whole bunch'a stuff, underwater breathing sounds, Foot step sounds, all through the datablock. I'll do this if you want.

Yoshi, get me a foot decal, and I might do this.
« Last Edit: July 06, 2009, 10:27:46 PM by AGlass0fMilk »

Bump cause I still need to know if people want this....

How about if you walk(Normal keybind C) you cant hear it
Do want.

Someone get me a footstep print, and I might make it.

I tried this i got from the TGE Demo mixed with a No_Jet player script (Edited the show energy bar though)
Code: [Select]
//Player_TGEPlayer

//----------------------------------------------------------------------------
// Foot puffs
//----------------------------------------------------------------------------

datablock ParticleData(LightPuff)
{
   dragCoefficient      = 2.0;
   gravityCoefficient   = -0.01;
   inheritedVelFactor   = 0.6;
   constantAcceleration = 0.0;
   lifetimeMS           = 800;
   lifetimeVarianceMS   = 100;
   useInvAlpha          = true;
   spinRandomMin        = -35.0;
   spinRandomMax        = 35.0;
   textureName          = "base/data/particles/chunk";
   colors[0]     = "1.0 1.0 1.0 1.0";
   colors[1]     = "1.0 1.0 1.0 0.0";
   sizes[0]      = 0.1;
   sizes[1]      = 0.8;
   times[0]      = 0.3;
   times[1]      = 1.0;
};

datablock ParticleEmitterData(LightPuffEmitter)
{
   ejectionPeriodMS = 35;
   periodVarianceMS = 10;
   ejectionVelocity = 0.2;
   velocityVariance = 0.1;
   ejectionOffset   = 0.0;
   thetaMin         = 20;
   thetaMax         = 60;
   phiReferenceVel  = 0;
   phiVariance      = 360;
   overrideAdvance = false;
   useEmitterColors = true;
   particles = "LightPuff";
};

datablock DecalData(PlayerFootprint)
{
   sizeX       = 0.25;
   sizeY       = 0.25;
   textureName = "./footprint";
};

datablock PlayerData(PlayerNoJet : PlayerStandardArmor)
{
minJetEnergy = 0;
jetEnergyDrain = 0;
canJet = 0;

uiName = "TGE Player";
showEnergyBar = True;

// Foot Prints
decalData   = PlayerFootprint;
decalOffset = 0.25;
  
footPuffEmitter = LightPuffEmitter;
footPuffNumParts = 10;
footPuffRadius = 0.25;
};
Didn't work, though i didn't expect it to work, not even the foot puffs work

Someone get me a footstep print, and I might make it.
Will these do?