Advertisement
keybode

css v34 create move part

Feb 15th, 2015
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. if (!bSpeed) {
  2.     if (!pWeapon->IsEmpty() && !pWeapon->IsMelee()) {
  3.         Vector3 vReal = pCmd->viewangles;
  4.  
  5.         if (pWeapon->CanFire()) {
  6.             gAimbot.OnCreateMove(pCmd);
  7.  
  8.             if (pCmd->buttons & IN_ATTACK) {
  9.                 pCmd->random_seed = 141;
  10.                 pCmd->command_number = CalculateCmd(pCmd);
  11.  
  12.                 gAccuracy.ApplySpreadFix(pCmd);
  13.                 gAccuracy.ApplyRecoilFix(pCmd);
  14.             }
  15.         } else {
  16.             EdgeAntAim(pLocal, pCmd, 0.0f, true, true, true, bSendPacket);
  17.         }
  18.  
  19.         MovementFix(pCmd, vReal);
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement