Ok I've finally found an easy way to do it
simply need to add these lines in CreateBlock function
PHP Code:
switch ( block_type )
{
case BHOP: set_pev(iEntity,pev_skin,1);
case DAMAGE: set_pev( iEntity, pev_skin, 2);
case HEALER: set_pev( iEntity, pev_skin, 3);
case NO_FALL_DAMAGE: set_pev( iEntity, pev_skin, 4);
case ICE: set_pev( iEntity, pev_skin, 5);
case TRAMPOLINE: set_pev( iEntity, pev_skin, 6);
case SPEED_BOOST: set_pev( iEntity, pev_skin, 7);
//case BLOCK_TYPE: set_pev( iEntity, pev_skin, SkinID);
default:
{
set_pev( iEntity, pev_skin, 0);
}
}
Probably going to edit first post to upload fixed plugins when I get it all finished.
__________________