I've read some of the posts here and seached the net, but I'm still confused on how to display a sprite.
I know you need something like this.. (just the needed functions are shown)
Code:
new sprite
new userorigin[33]
public plugin_precache(){
sprite=precache_model("sprites/whatever.spr")
return PLUGIN_CONTINUE
}
public displaysprite(id){
get_user_origin(id,userorigin[id],0)
message_begin(MSG_ALL,SVC_TEMPENTITY)
write_byte(?)
write_coord(userorigin[id])
write_coord(userorigin[id])
write_coord(userorigin[id])
write_short(sprite)
message_end()
}
Thx in advance