Affichage des articles dont le libellé est AimBot. Afficher tous les articles
Affichage des articles dont le libellé est AimBot. Afficher tous les articles

mardi 18 mars 2014

aimbot for ps3 topic




Need help how do I download aimbot for bopson ps3? what is winjack for?





mercredi 12 mars 2014

[Coding] Internal Bone Aimbot topic




func to get hitbox

PHP Code:







Vector __cdecl GetHitboxVec(__in CBaseEntity *pEnt__in int iHitbox)
{
    
mstudiobbox_t *pStudioTransform NULL;
    
matrix3x4a_t mBoneTransform[128]; // MAXSTUDIOBONES
    
studiohdr_t *pStudioHeader NULL;
    
Vector vHitboxvMaxvMin;
    const 
model_t *model;
 
    if(
pEnt && pEnt->SetupBones(mBoneTransformMAXSTUDIOBONESBONE_USED_BY_HITBOX0.f)) {
        
model pEnt->GetModel();
        if(
modelpStudioHeader pModel->GetStudiomodel(model);  
        if(
pStudioHeader) {
            
// never gets executed
            
Warning("pStudioHeader not null!\n");
            
pStudioTransform pStudioHeader->pHitbox(iHitbox0);
            
VectorTransform(pStudioTransform[iHitbox].bbminmBoneTransform[iHitbox], vMin);
            
VectorTransform(pStudioTransform[iHitbox].bbmaxmBoneTransform[iHitbox], vMax);
            
vHitbox = (vMin vMax) * 0.5f;
        }
    }
    return 
vHitbox;










code in my aimbot loop to get ent

PHP Code:







IClientEntity *pTemp pEntity->GetClientEntity(i);
if(
pTemp) {
    
CBaseEntity *pCheck pTemp->GetBaseEntity();
    ...
    
pAimAt pCheck;
    ... 









why does GetStudiomodel fail? D:





vendredi 24 janvier 2014

[Question] Aimbot Strategy topic




Hello,

So i managed to get the coordinates and managed to make a basic aimbot in the game i work on but i have a problem.
How can i make such that i aim at the player that is closest to my crosshairs, as to not jump all around with my aim? I tried computing all the pitch and yaws and choose the closest target but after i fire a shot the recoil jumps and my aim moves to a different target...
Any advice?