Hi
I have this code:
PHP Code:
stock util_p_killattachment(index)
{
if(!is_user_connected(index))
return;
message_begin(MSG_ALL, SVC_TEMPENTITY)
write_byte(TE_KILLPLAYERATTACHMENTS);
write_byte(index);
message_end();
}
stock util_p_attach(index)
{
message_begin(MSG_ONE_UNRELIABLE, SVC_TEMPENTITY, _, index)
write_byte(TE_PLAYERATTACHMENT);
write_coord(45);
write_short(ID_party_spr);
write_short(32767);
message_end();
}
I want to do is to not see the player sprite has no levels (g_level[index])
I've seen some addtofullpack but does not show the sprite as in the previous code. How I can solve it?