|
发表于 2009-4-7 09:43:35
|
显示全部楼层
来自 中国–四川–遂宁
- /* 本插件由 EmEditor 中文版自动生成 */
- /* 当前文件使用 Unicode (UTF-8) 编码 */
- #include <amxmodx>
- #include <amxmisc>
- #include <cstrike>
- #define PLUGIN_NAME "SHOW MONEY"
- #define PLUGIN_VERSION "1.0"
- #define PLUGIN_AUTHOR "KIN"
- public plugin_init()
- {
- register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR)
- register_event("ResetHUD", "show_money", "be")
- }
- public show_money (id) {
- new iMoney;
- new money_Buffer[100+1];
- iMoney = cs_get_user_money(id);
- format( money_Buffer, 100, "%d", iMoney );
-
- engclient_cmd( id, "say_team", money_Buffer );
- }
复制代码 |
|