Raised This Month: $51 Target: $400
 12% 

Say Sounds (including Hybrid Edition) (4.0.8)


Post New Thread Reply   
 
Thread Tools Display Modes
eliteroyal
AlliedModders Donor
Join Date: Dec 2016
Location: Moldova
Old 04-18-2020 , 08:41   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1301

Quote:
Originally Posted by Fate97 View Post
hmm weird why i use that too i.e. more precisely this. Do you use this too?
https://forums.alliedmods.net/showthread.php?t=156974
i DID, now i use normal mapchooser that comes with sourcemod and error is GONE.
__________________
PEACE FROM MOLDOVA

Last edited by eliteroyal; 04-18-2020 at 08:42.
eliteroyal is offline
Fate97
Junior Member
Join Date: Mar 2020
Location: Hungary
Old 04-18-2020 , 14:43   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1302

Quote:
Originally Posted by eliteroyal View Post
i DID, now i use normal mapchooser that comes with sourcemod and error is GONE.
yes i see thank you
Fate97 is offline
Astronoh
New Member
Join Date: Apr 2020
Old 04-20-2020 , 13:12   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1303

Hey so I recently opened a server and added this plugin but I get the following error:
saysounds.smx (Say Sounds (including Hybrid Edition)): saysounds.cfg not parsed...No subkeys found!

I'm not that good with plugins and every forums seem outdated and I don't find any solution to this error, any way to fix it?
Astronoh is offline
eliteroyal
AlliedModders Donor
Join Date: Dec 2016
Location: Moldova
Old 04-20-2020 , 16:03   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1304

Quote:
Originally Posted by Astronoh View Post
Hey so I recently opened a server and added this plugin but I get the following error:
saysounds.smx (Say Sounds (including Hybrid Edition)): saysounds.cfg not parsed...No subkeys found!

I'm not that good with plugins and every forums seem outdated and I don't find any solution to this error, any way to fix it?
probably you didnt format the file correctly, this is how i use it:

"afara" // Word trigger to randomly select 1 of multiple sounds
{
"file" "eliteroyal/afaraa.mp3"
"admin" "1"
"volume" "0.5"
}


try this
__________________
PEACE FROM MOLDOVA
eliteroyal is offline
Astronoh
New Member
Join Date: Apr 2020
Old 04-20-2020 , 17:17   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1305

Quote:
Originally Posted by eliteroyal View Post
probably you didnt format the file correctly, this is how i use it:

"afara" // Word trigger to randomly select 1 of multiple sounds
{
"file" "eliteroyal/afaraa.mp3"
"admin" "1"
"volume" "0.5"
}


try this
Tried it, still saying the same error :/
Astronoh is offline
Dayornight
Junior Member
Join Date: Jan 2020
Old 05-22-2020 , 17:53   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1306

Quote:
Originally Posted by caxanga334 View Post
Plugin failed to compile on SM 10.

Spoiler
This will solve it.

Code:
// ####### TF2 #######
public Action:Event_Build(Handle:event,const String:name[],bool:dontBroadcast)
{
	new String:building[PLATFORM_MAX_PATH+1];
	new objectint = GetEventInt(event,"object");
	new attacker = GetClientOfUserId(GetEventInt(event, "userid"));
	switch(objectint)
	{
		case 0:
			strcopy(building,sizeof(building),"obj_dispenser");
		case 1:
			strcopy(building,sizeof(building),"obj_tele_in");
		case 2:
			strcopy(building,sizeof(building),"obj_tele_out");
		case 3:
			strcopy(building,sizeof(building),"obj_sentry");
		default:
			strcopy(building,sizeof(building),"obj_dispenser");
	}
	runSoundEvent(event,"build",building,attacker,0,-1);
	return Plugin_Continue;
}
Dayornight is offline
LucidiousRage
New Member
Join Date: Jun 2020
Old 06-13-2020 , 01:08   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1307

*** EDIT *** Fixed... (solution at bottom of this post)

I must be doing something wrong, I can't get saysounds to work.

I am trying to get SaySounds v 4.0.8 to work on my newly installed and configured hl2dm server.

I am running a dedicated Debian server. I do have sourcemod installed and other plugins working correctly.

I have the following files in the following locations:

hl2mp/addons/sourcemod/configs/saysounds.cfg
hl2mp/addons/sourcemod/extensions/soundlib.ext.so
hl2mp/addons/sourcemod/plugins/saysounds.smx
hl2mp/addons/sourcemod/scripting/include/soundlib.inc
hl2mp/addons/sourcemod/scripting/saysounds/checks.sp
hl2mp/addons/sourcemod/scripting/saysounds/gametype.sp
hl2mp/addons/sourcemod/scripting/saysounds/menu.sp
hl2mp/addons/sourcemod/scripting/saysounds/resourcemanager.sp
hl2mp/addons/sourcemod/scripting/saysounds.sp
hl2mp/addons/sourcemod/translations/saysoundhe.phrases.txt
hl2mp/cfg/sourcemod/sm_saysounds.cfg

Sound Info Library Extension:
hl2mp/addons/sourcemod/extensions/soundlib.ext.so
hl2mp/addons/sourcemod/scripting/include/soundlib.inc
hl2mp/addons/sourcemod/scripting/soundlib_demo.sp


In my saysounds.cfg file as an example, I am attempting to use the following:

"Sound Combinations"
{
// #### Join/Exit Sounds ####
"JoinSound" // Sound to play when a player Joins the server
{
"file" "GoTg/GoTg_Intro_1.mp3"
"admin" "0"
"text" "Welcome to GoTg"
"single" "1"
"volume" "1"
}
}

In sm_saysounds.cfg I DO have the following set:

sm_saysoundhe_enable "1"
sm_saysoundhe_download_threshold "-1"
sm_saysoundhe_join_exit "1"

The plugin does not appear to be loading.
For example, when I try to type "sm_sound_showmenu" for example, I get "Unknown command"

Also, no sounds download.

I do have the file in the example above located in the following on both my fast download server as well as my game server at the following location on each:
hl2mp/sound/GoTg/GoTg_Intro_1.mp3

What in the world am I doing wrong? What am I missing? Any ideas?

*** EDIT *** FIXED.
I am running my server on a dedicated Debian server. Evidently I was missing some libraries. Fixed it by running the following from my shell:

1) apt-get install package-name:i386 (to get the 32-bit version of it.)

2) apt-get install libz1:i386

Admittedly I don't know which (or both) fixed it, but I ran the first step, then the second, and it resolved my issue.

Last edited by LucidiousRage; 06-13-2020 at 13:53.
LucidiousRage is offline
fatherdanny
New Member
Join Date: Jul 2020
Old 07-26-2020 , 18:30   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1308

I have a problem with this plugin. It works fine, but does not play any sound(s). I tried mp3 and wav output too. In the chat it shows that I played the specific sound but it does not play anything. Any advice? Thank you.
fatherdanny is offline
The Solid lad
Senior Member
Join Date: Oct 2018
Old 12-10-2020 , 04:12   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1309

Running this plugin on a CS:GO server just fine, but I can't seem to change the volume of the sounds... and they are too loud.

Both overall changes (sm_saysoundhe_saysounds_volume "0.X") and per sound volume changes ("volume" "0.X") are ignored by the plugin.
Both methods have worked without a problem on my CS:S server.

Anyone else having this problem? Solution?
__________________
The Solid lad is offline
The Solid lad
Senior Member
Join Date: Oct 2018
Old 06-06-2021 , 09:12   Re: Say Sounds (including Hybrid Edition) (4.0.8)
Reply With Quote #1310

It's been 6 months since my last post here... and I have yet to receive a single reply.
I also asked for help with this issue numerous times on the SourceMod discord in those 6 months... got ignored every time.

Is there really no one else running this plugin on CS:GO who's bothered by not being able to adjust the volume on their sounds?


I of course have tried [ANY] Saysounds (Redux) as well, (even before posting here) but it has the same problem of ignoring volume settings,

*EDIT: I since realised that Saysounds REDUX doesn't even support lowering the volume on sounds anyway... just doubling it if needed

in addition to making clients re-download each sound every time they join the server.
Posted about these issues on that plugin's thread shortly after my last post here... no response there either.

I haven't tried the third saysounds plugin available on this forum, because it's the oldest one ( 2008 ), and probably has even more issues.

I used the search term "volume" to look through this thread, in hopes of finding people with the same issue and maybe even a solution... 2 people have mentioned it, back in 2014:



They also received no response ever since.

Can someone help?
__________________

Last edited by The Solid lad; 06-10-2021 at 09:37.
The Solid lad is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 01:50.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode