| RCC|Dynamite |
05-22-2005 17:28 |
Pluginname: admin_warn; wavfile is not play at the Clients
1 Attachment(s)
Code:
/*AMXMODX script.
* amxx_warn by [RCC] Dynamite
* visit [RCC] Counterstrike Clan at www.vereinte-rusher.de
*
* This is a variation of the default Slay command included with AMXMODX.
* Thanks to the AMXMODX team for this great mod.
*
* Admin commands:
* amxx_warn <authid, nick or #userid>
* warn <authid, nick or #userid>
*
* Shows a MOTD box to the player when they have been warned, and announces the warning to all.
* Logs warnings to /addons/amx/warnings.log for easy reference.
* Requires an /addons/amxmodx/configs/amxx_warn/warning.txt file for the text displayed in the warning MOTD.
*/
#include <amxmodx>
#include <amxmisc>
public admin_warn(id,level,cid){
if (!cmd_access(id,level,cid,2))
return PLUGIN_HANDLED
new arg[32]
read_argv(1,arg,31)
new player = cmd_target(id,arg,0)
if (!player) return PLUGIN_HANDLED
client_cmd(0,"spk misc/dead_police.wav")
show_motd(player,"/addons/amxmodx/configs/amxx_warn/warning.txt","You are being warned!")
new authid[16],name2[32],authid2[16],name[32]
get_user_authid(id,authid,15)
get_user_name(id,name,31)
get_user_authid(player,authid2,15)
get_user_name(player,name2,31)
log_to_file("/addons/amxmodx/configs/amxx_warn/warnings.log","Cmd: ^"%s<%d><%s><>^" warned ^"%s<%d><%s><>^"",
name,get_user_userid(id),authid, name2,get_user_userid(player),authid2 )
set_hudmessage(255, 0, 0, 0.05, 0.65, 2, 0.02, 6.0, 0.01, 0.1, 2);
show_hudmessage(0,"%s has been warned for violating a server rule",name2)
console_print(id,"Client ^"%s^" warned",name2)
return PLUGIN_HANDLED
}
public plugin_init() {
register_plugin("Admin Warn","1.0","RCC| Dynamite")
register_concmd("amxx_warn","admin_warn",ADMIN_LEVEL_A,"<authid, nick or #userid>")
register_concmd("warn","admin_warn",ADMIN_LEVEL_A,"<authid, nick or #userid>")
return PLUGIN_CONTINUE
}
here is my problem: Clients cannot hear the sound because these are not played with them
is the path the problem ?
client_cmd(0,"spk misc/dead_police.wav")
the second proble is that the logs dosnt work and i dont no why
cu
Dynamite
|