Quote:
Originally Posted by Emp`
because "fm aim origin" returns a Float vector. if you were to use it, you would need to do:
Code:
message_begin(MSG_PVS, SVC_TEMPENTITY, origin);
write_byte(TE_IMPLOSION);
write_coord( floatround(origin[0]) );
write_coord( floatround(origin[1]) );
write_coord( floatround(origin[2]) );
write_byte(64); // radius
write_byte(100); // count
write_byte(6); // life
message_end();
|
Or better,use engfunc(EngFunc_WriteCoord).