搜索
查看: 1848|回复: 0

帮帮我flashbang_dlight.sma怎么设置

[复制链接]
发表于 2007-10-29 22:43:08 | 显示全部楼层 |阅读模式 来自 中国–浙江–湖州
设置后还是白色

#include <amxmodx>
#include <fakemeta>
new enabled_cvar;
new radius_cvar;
new color_cvar;
public plugin_init()
{
register_plugin("Flashbang Dynamic Light","0.10","Avalanche");
register_forward(FM_EmitSound,"fw_emitsound");
enabled_cvar = register_cvar("fbl_enabled","1");
radius_cvar = register_cvar("fbl_radius","50");
color_cvar = register_cvar("fbl_color","45 105 57");
}
public fw_emitsound(entity,channel,const sample
[],Float:volume,Float:attenuation,fFlags,pitch)
{
// plugin disabled
if(!get_pcvar_num(enabled_cvar))
  return FMRES_IGNORED;
// not a flashbang exploding
if(!equali(sample,"weapons/flashbang-1.wav") && !equali(sample,"weapons/flashbang-
2.wav"))
  return FMRES_IGNORED;
// light effect
flashbang_explode(entity);
return FMRES_IGNORED;
}

public flashbang_explode(greindex)
{
// invalid entity
if(!pev_valid(greindex)) return;
// get origin of explosion
new Float:origin[3];
pev(greindex,pev_origin,origin);
// get color from cvar
new color[16];
get_pcvar_string(color_cvar,color,15);
// split it into red, green, blue
new redamt[5], greenamt[5], blueamt[5];
parse(color,redamt,4,greenamt,4,blueamt,4);
// send the light flash
message_begin(MSG_BROADCAST,SVC_TEMPENTITY);
write_byte(27); // TE_DLIGHT
write_coord(floatround(origin[0])); // x
write_coord(floatround(origin[1])); // y
write_coord(floatround(origin[2])); // z
write_byte(get_pcvar_num(radius_cvar)); // radius
write_byte(str_to_num(redamt)); // r
write_byte(str_to_num(greenamt)); // g
write_byte(str_to_num(blueamt)); // b
write_byte(8); // life
write_byte(60); // decay rate
message_end();
}
游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表