介绍:
- 传送一个实体Entity到某个位置(一般来说这个目标位置需要从某个已经确定位置的实体Entity处获得)
//TeleportEntity Function
//Teleports an entity.
//void TeleportEntity(int entity, const float origin[3], const float angles[3], const float velocity[3])
float vPos[3];
GetEntPropVector(client, Prop_Data, "m_vecAbsOrigin", vPos);
float vAngles[3];
GetEntPropVector(client, Prop_Data, "m_angAbsRotation", vAngles);
TeleportEntity(entityYouWantTeleport, vPos, vAngles, NULL_VECTOR)
参考: