Hy allied modders users i try to use player models plugin witch sets player models CT and TE, but i have a server with a random ct player santa , the player models plugin sets the model for santa too
I whant that santa to have a different model, and i have created a native
Code:
public native_get_santa ( id ) {
return mosul [ id ] == true ? 1 : 0
}
and
Code:
mosul [ id ] = true;
to that random santa, but this player_models sets it's own model how can i solve this ?
.SMA
i have added a check but nothing
Code:
public set_model ( id )
{
if ( get_santa ( id ) )
return 1;
.inc
Code:
#pragma reqlib "santa"
native get_santa ( id );