PHP Code:
public _MakeInvis( id )
{
new players[32], asd
get_players( players, asd, "ae", "TERRORIST" )
if( asd == 1 )
for(new i = 0; i < players[ 0 ] i++)
if( NoKnife[ i ] == 0 && is_user_alive( i ) )
set_user_rendering( i, kRenderFxNone, 0, 0, 0, kRenderTransAlpha , 0 )
return PLUGIN_HANDLED
---->
PHP Code:
public _MakeInvis( id )
{
new players[32], asd
get_players( players, asd, "ae", "TERRORIST" )
if( asd > 0 )
{
for(new i = 0; i < asd; i++)
{
new client = players[i];
if( NoKnife[ client ] == 0 && is_user_alive( client ) )
set_user_rendering( client, kRenderFxNone, 0, 0, 0, kRenderTransAlpha , 0 )
}
}
return PLUGIN_HANDLED
I quickly wrote it so it might be wrong / not work / not even compile but it should solve your issue which you falsely claimed to be solved.