Hey all,today i'm trying to draw sprites on client hud so here's my code:
Code:
public testspr() {
new sprite;
sprite = precache_model("sprites/TEST.spr");
message_begin(MSG_BROADCAST,SVC_TEMPENTITY);
write_byte(17);
write_coord(10); // coord, coord, coord (position)
write_coord(10);
write_coord(10);
write_short(sprite); // short (sprite index)
write_byte(20); // byte (scale in 0.1's)
write_byte(200); // byte (brightness)
message_end();
}
And that actually doesn't do anything...I remeber once seeing a list of all
base sprites included in CS but i can't find it anymore,could you guys please hook me up??
Thx,