我这SMA有甚么问题???

Home Home
引用 | 编辑 kennyko
2014-07-03 20:47
楼主
推文 x0
如题表情
能转为amxx表情
但是为何我进入server时表情
打/re 没有东西??表情


连  [系统通知] 之类都没有表情
     ^^^^^^^^^^^^client_print(id, print_chat, "^x01系统通知 你的^x04战绩^x01被^x04清零" )表情
                     和client_print(0, print_chat, "^x01系统通知 输入^x04/re^x01可以^x04重整战绩")表情


小第新手表情
这sma 想了1-2小时表情
还是寻求不到答按表情
sma如下表情
===========================


#include <amxmodx>
#include <cstrike>
#include <fun>
#include <chatcolor>


public plugin_init()
{
register_event("HLTV", "event_RoundStart", "a", "1=0", "2=0")
register_clcmd("say /re","rs" )
}


public rs(id)
{
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
client_print(id, print_chat, "^x01系统通知 你的^x04战绩^x01被^x04清零" )
}


public event_RoundStart()
{
       client_print(0, print_chat, "^x01系统通知 输入^x04/re^x01可以^x04重整战绩")
}

献花 x0
引用 | 编辑 蓝的天空
2014-07-15 11:09
1楼
  
想请问一下
您有装到伺服器上 并且用HLDS开过后
打amx_plugins 查询插件状态吗?

献花 x0