umm i'm tired of tryin to do this so could so one help
here is sum codes where is my problem
this is from v3x plugin i'm just trying to make it work with my plugin.......
Code:
public FlashedEvent(id, wId )
{
new iMode = get_cvar_num("amx_fb_mode")
if ( !iMode )
if(hasFLASHNADE[id] == true)
{
if(wId == CSW_FLASHBANG) return PLUGIN_CONTINUE
new iRed,iGreen,iBlue
switch( iMode )
{
case 1:
{
iRed = get_cvar_num("amx_fb_r")
iGreen = get_cvar_num("amx_fb_g")
iBlue = get_cvar_num("amx_fb_b")
}
case 2:
{
iRed = random_num(0,255)
iGreen = random_num(0,255)
iBlue = random_num(0,255)
}
}
if ( !( iRed ) || !( iGreen ) || !( iBlue ) )
{
iRed = 100
iGreen = 100
iBlue = 100
}
message_begin( MSG_ONE,g_nMsgScreenFade,{0,0,0}, hasFLASHNADE[id])
write_short( read_data( 1 ) ) // Duration
write_short( read_data( 2 ) ) // Hold time
write_short( read_data( 3 ) ) // Fade type
write_byte ( iRed ) // Red
write_byte ( iGreen ) // Green
write_byte ( iBlue ) // Blue
write_byte ( read_data( 7 ) ) // Alpha
message_end()
return PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}
what i need is how to make the msg for only one user that i want (hasFLASHNADE[id]) but i have no idea how to do that so plz try to help me...