View Single Post
Ayman Khaled
Senior Member
Join Date: Mar 2017
Location: Palestine
Old 08-12-2017 , 16:34   Re: Simple sound chat (say)
Reply With Quote #2

try.
PHP Code:
#include <amxmodx>

new const szSound[] = "yoursound.wav"

public plugin_init() 
    
register_clcmd("say""cmd_Say")

public 
plugin_precache()
    
precache_sound(szSound)
    
public 
cmd_Say(id)
{
    new 
players[32], pnumUidx
    
    get_players
(playerspnum"e")
    
    for( 
0pnumx++)
    {
        
Uid players[x]
        
client_cmd(Uid"spk sound/%s"szSound)
    }

__________________

Last edited by Ayman Khaled; 08-12-2017 at 16:44.
Ayman Khaled is offline