Всем привет, мне нужно сделать в плагине, чтобы звук воспроизводился в mp3 формате. Где то читал, что такое возможно, надеюсь на вас. :3
Код:
/*
()()()()()()()()()()()()()()()()()()()()()
()()()()Round Start Music BETA 0.3()()()()
()()()()()()()()()()()()()()()()()()()()()
6.10.2011 - Plugin made.
Description - When the round starts it plays .wav music make sure its small....(prox. 15 sec)
Coding- Poorly coded soon better version.
Works - Tested.
Problems? - Contact theforum post.
*/
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Music At Round Start"
#define VERSION "0.3"
#define AUTHOR "mix97mix"
#define START_SOUND "" // add your music you have to know its in the sound folder but you dont need sound like anything/enything.wav
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("HLTV", "Event_HLTV_New_Round", "a", "1=0", "2=0")
}
public plugin_precache() //Sound must be precached or plugin will not work !
{
precache_sound(START_SOUND)
}
public Event_HLTV_New_Round(id)
{
client_cmd(id, "spk %s", START_SOUND )
}
Отредактировал: Bloo, - 1.11.2015, 12:37
Причина: Выдано устное предупреждение!