Well, I have this thing
Code:
public origin_set(id)
{
new index, bodypart
get_user_aiming(id, index, bodypart)
if(index)
{
New Float:origin[3]
origin[2] -= 50.0
entity_set_origin(index,origin)
}
else
{
}
return PLUGIN_HANDLED
}
Now, in other public, where I CAN'T LOOK AT THAT ENTITY AGAIN, I must set its origin again... Now, how the heck I can do that?
I can't use "index" again... So, any help?
__________________