|
发表于 2009-9-21 01:19:58
|
显示全部楼层
来自 中国–四川–遂宁
- #include <amxmodx>
- #include <amxmisc>
- public plugin_init()
- {
- register_plugin("end round", "1.0", "KIN");
- register_event("SendAudio", "end_round", "a", "2&%!MRAD_terwin", "2&%!MRAD_ctwin", "2&%!MRAD_rounddraw");
- }
- public end_round()
- {
- client_print(0, print_center, "本局结束");
- }
复制代码 |
|