When I use command "sv_stopsound", this doesn't work:
1
2
2
file = "unrealsoftware.ogg" parse("sv_stopsound "..file.." 1")
This doesn't work either:
1
file = ""unrealsoftware.ogg""
This DOES work:
1
2
2
file = ""..string.char(34).."unrealsoftware.ogg"..string.char(34).."" parse("sv_stopsound "..file.." 1")
I know it looks silly, but it's the only one I could get to work.
Now my question is: Is there better/easier way to name the "file"?
Thanks!