|
发表于 2009-8-25 19:42:13
|
显示全部楼层
来自 中国–广东–中山
本帖最后由 hotbadman 于 2009-8-25 20:38 编辑
看了源码,觉得楼主写的很乱,有不少无用代码,估计是个拼凑起来的的作品。
自动报钱的代码段,不明白为什么要分成两个函数。如下所写,就已经实现自动报钱了。
public plugin_init()
{
register_plugin("Money", "1.0", "HOTBadmaN")
register_event("ResetHUD", "new_round", "be")
}
public new_round(id)
{
if(is_user_alive(id))
{
client_cmd(id,"say_team $%d",cs_get_user_money(id))
}
} |
|