求 开局显示警匪比分的插件
RT, 不要比赛插件,只要能在每局 开局时显示当前比分 就可以。高人指点一下代码。 和我求助那个比分持续显示一样没有人理会 暑期不是嘛。。高人都度假去了。 去比赛插件里抄一段试试 自己试吧。
#include <amxmodx>
#include <amxmisc>
#define PLUGIN_NAME "New Plug-In"
#define PLUGIN_VERSION "1.0"
#define PLUGIN_AUTHOR "zwfgdlc"
new hud_sync;
new TEscore;
new CTscore;
public plugin_init()
{
register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR);
hud_sync = CreateHudSyncObj();
register_event("TeamScore", "EVENT_TeamScore", "a");
register_logevent("Round_Start", 2, "1=Round_Start");
}
public EVENT_TeamScore()
{
new team;
read_data(1, team, 9);
if(team == 'T')
TEscore=read_data(2);
else
CTscore = read_data(2);
}
public Round_Start()
{
set_hudmessage(255, 170, 0, -1.0, 0.3, 0, 6.0, 12.0)
ShowSyncHudMsg(0, hud_sync, "当前双方比分是^nTE=%dCT=%d^n%s暂时领先", TEscore, CTscore,CTscore > TEscore ? "CT" : "TE");
}
热心的人在楼上,楼下继续 不错 !哈哈 我喜欢!! 热心的人在楼上,楼下继续 zwfgdlc 发表于 2009-8-12 17:25
自己试吧。
这个能用,支持了。
页:
[1]