I have a sound placed in my addons folder in this path:
[code]sound/jet/gear1_loop.wav[/code]
My line of Lua:
[lua]
ENT.SoundEffect ="jet/gear1_loop.wav"
[/lua]
It plays once, but it wont loop. Am I doing something incredibly and noticeably wrong?
[QUOTE=Chad Mobile;21268753]I have a sound placed in my addons folder in this path:
[code]sound/jet/gear1_loop.wav[/code]My line of Lua:
ENT.SoundEffect ="jet/gear1_loop.wav"
It plays once, but it wont loop. Am I doing something incredibly and noticeably wrong?[/QUOTE]
is it a custom sound?? for sounds to loop im sure they need to have cue points for start and end last time i did this i used goldwave im sure any good audio editor will do it
or try this instead
local gear1loop = "jet/gear1_loop.wav"
ENT:EmitSound( gear1loop )
Sorry, you need to Log In to post a reply to this thread.