|
发表于 2009-9-3 09:41:26
|
显示全部楼层
来自 中国–广西–梧州–苍梧县
本帖最后由 Osker Lee 于 2009-9-3 09:43 编辑
以新版魔兽插件v3.0_RC13为例,打开war3ft文件夹,找到events.inl这个文件,找到下面这段代码:
// Make sure the user has the skill and we actually have a grenade index
if ( greindex && iSkillLevel > 0 )
{
// Then Critical Grenades are allowed
if ( OR_CriticalGrenadeAllowed( index ) )
{
// Then draw it!
if ( SHARED_IsGrenade( wId ) )
{
new iWidth = 3 * iSkillLevel;
Create_TE_BEAMFOLLOW( greindex, g_iSprites[SPR_TRAIL], 20, iWidth, 255, 32, 32, 196 );
}
}
}
return;
}
代码里面红色的参数(255,32,32)就是颜色代码,你可以自行修改。 |
|