- Initiateur de la discussion
NoaGamingFR
Wait :)
- Messages
- 3 650
- Score réaction
- 625
- Points
- 340
Bonjour mTx, j'ai trouvé quelques petits code sur http://g-box.fr le site de @Yoh Sambre ♪ et internet, mais, il n'est pas indiqué ou placer certains code
Je voudrais donc savoir ces infos :
Ou placer ce code : Celui-ci : Et celui-ci
Merci !
Je voudrais donc savoir ces infos :
Ou placer ce code :
Code:
local son = Sound("saut.wav")
function KeyPressed (ply, key) if ( key == IN_JUMP ) then ply:EmitSound(son) end
end
hook.Add( "KeyPress", "KeyPressedHook", KeyPressed )
Code:
local function NoSound() return true
end
hook.Add("PlayerDeathSound", "NoSound", NoSound)
Code:
hook.Add("PlayerFootstep", "ChangeStepSounds", function(ply) if ply:Team() == TEAM_NOM then ply:EmitSound( "NPC_Hunter.Footstep" ) -- Custom sound return true -- Don't allow default footsteps end if ply:Team() == TEAM_DIFFERENTE then ply:EmitSound( "CustomSound.mp3" ) -- Custom sound return true -- Don't allow default footsteps end
end)