|
楼主 |
发表于 2009-3-2 12:50:35
|
显示全部楼层
来自 中国–广西–百色–右江区
#include <amxmodx>
new const MP3[] = "sound/misc/Track61.mp3"
public plugin_init(){
register_plugin("Daylight","2.","A.MI")
register_logevent("round_start", 2, "1=Round_Start")
}
public round_start(){
new maxppl = get_maxplayers()
for(new i = 1; i <= maxppl; ++i){
if(is_user_alive(i)){
client_cmd(i,"mp3 loop %s",MP3);
}
}
}
没有想到你和当初进点通的俺一样菜菜的.........^-^ |
|