i have this Beacon, but i want change it to another i dont know how..
Code:
stock MakeBeacon( const index )
{
static iOrigin[ 3 ];
get_user_origin( index, iOrigin );
message_begin( MSG_BROADCAST, SVC_TEMPENTITY);
write_byte( TE_BEAMTORUS );
write_coord( iOrigin[ 0 ] );
write_coord( iOrigin[ 1 ] );
write_coord( iOrigin[ 2 ] );
write_coord( iOrigin[ 0 ] );
write_coord( iOrigin[ 1 ] );
write_coord( iOrigin[ 2 ] + 100 );
write_short( g_iBeaconBeam );
write_byte( 0 );
write_byte( 1 );
write_byte( 7 );
write_byte( 80 );
write_byte( 1 );
write_byte( 0 ); // Red
write_byte( 250 ); // Green
write_byte( 17 ); // Blue
write_byte( 200 );
write_byte( 0 );
message_end();
}
to this >
someone can help me?