is it possible to make a player bounce as if he were in a bubble?
i tried:
Code:
set_pev(id, pev_movetype, MOVETYPE_BOUNCE);
but that didnt work at all and i dont know what to do...
edit:
also, how would i get a players id if i found him/her this way:
Code:
new ent;
while((ent = fm_find_ent_in_sphere(ent, "player", 1000.0))
{
// get player's id and continue with coding...
}
__________________