mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-06 01:23:30 +08:00
37 lines
905 B
C++
37 lines
905 B
C++
|
|
#include "../main.h"
|
|
#include "game.h"
|
|
#include "util.h"
|
|
|
|
extern CGame *pGame;
|
|
|
|
//-----------------------------------------------------------
|
|
// This is the constructor for creating new player.
|
|
|
|
CActorPed::CActorPed(int iSkin, float fX, float fY,float fZ,float fRotation)
|
|
{
|
|
m_pPed=0;
|
|
m_dwGTAId=0;
|
|
m_byteImmune=0;
|
|
int iCounter=0;
|
|
DWORD dwActorID=0;
|
|
|
|
if(!pGame->IsModelLoaded(iSkin)) {
|
|
pGame->RequestModel(iSkin);
|
|
pGame->LoadRequestedModels();
|
|
while(!pGame->IsModelLoaded(iSkin)) Sleep(1);
|
|
}
|
|
|
|
ScriptCommand(&create_actor,5,iSkin,fX,fY,fZ-1.0f,&dwActorID);
|
|
ScriptCommand(&set_actor_z_angle,dwActorID,fRotation);
|
|
|
|
m_dwGTAId = dwActorID;
|
|
m_pPed = GamePool_Ped_GetAt(m_dwGTAId);
|
|
m_pEntity = (ENTITY_TYPE *)m_pPed;
|
|
ScriptCommand(&set_actor_can_be_decapitated,m_dwGTAId,0);
|
|
ScriptCommand(&set_actor_dicision,m_dwGTAId,65542);
|
|
}
|
|
|
|
//-----------------------------------------------------------
|
|
|