+- +-

+-User

Welcome, Guest.
Please login or register.
 
 
 

Login with your social network

Forgot your password?

+-Stats ezBlock

Members
Total Members: 4
Latest: Bob
New This Month: 0
New This Week: 0
New Today: 0
Stats
Total Posts: 15
Total Topics: 15
Most Online Today: 9
Most Online Ever: 152
(November 07, 2022, 01:49:47 pm)
Users Online
Members: 0
Guests: 6
Total: 6

Recent Posts

Pages: [1] 2
1
Uploading rules & Rules[Read for anything] / Forum Rules !
« Last post by Brandon on July 20, 2013, 12:10:50 pm »
Forum Rules

- No advertising or quoting an advertisement. (Permanent Ban)
- No direct/indirect advertising or quoting of rule breaking content. (Permanent Ban)
- No spamming outside of the spam section. (1 Day Ban)
- No scamming of any kind. (Permanent Ban)

- No disrespecting staff. (5 Day Ban)
- No flaming members outside of the flaming section. (2 Day Ban)

- No racist comments. (5 Day Ban)
- No posting of keyloggers, viruses or phishers.(permanent Ban)
- No posting of personal information. (Permanent Ban)
- No selling of hacks, menus, scripts, loaders or any other cheating/hacking related material (includes free offer with purchase). (Permanent Ban)
2
News & updates / Announcement
« Last post by Brandon on July 19, 2013, 07:04:32 pm »
Dear members,

This is a simple list to show you the The Staff Team

Admin&Owner
Brandon
Dustin


Global Moderators
Mikey


Supporters - looking


If you have any problems, feel free to contact a staff member

Sincerely,
  Staff team
3
News & updates / Forum clean up!
« Last post by Brandon on July 19, 2013, 07:01:23 pm »
we dont want the website infested by spam posts, we want a nice clean looking forum.

Thank you,
    Staff Team.
4
Crossfire hacks & bots / Crossfire Memory hack/wallhack
« Last post by Dustin on July 19, 2013, 11:49:37 am »
This is the Crossfire memory,
Features:

>>HotKeys<<[color]


F5 Wallhack
F6 SeeGhost
F7 SpeedKnife
F8 LongKnife
F9 Speed[Shift]
F10 C4Fast(Plant/Defuse)

>>AutoOn<<

NoGranagaDmg
NoFlashDmg
NoC4Dmg
Image

How to run
1. Open your injector as admin
2. Target process as crossfire.exe
3. Target .Dll
4. check automatic inject and close on inject(if you have those options)
5. Start crossfire and enjoy!
Download Hack
Virus Scan
https://www.virustotal.com/en/file/b24423d64664d6036dd43b5a69d1146fefee9d7819fa9e6d6ebb1ead0718e8e2/analysis/

User Credits
:


@BACKD00R
@luizimloko
@XarutoUsoCrack
@dreek1
@WE11
@bandi12
@gellin
@kmanev073
@giniyat101
@Pingo
@bandi12
@FooChaos

5
Assault cube hack / Assault Cube Ultimate Trainer v1.0
« Last post by Brandon on July 19, 2013, 03:31:34 am »
credits Kopuz



HOTKEY    FEATURE   

Alt + W    Teleport 7 Yards North (Use these teleports to go through objects or for a speed hack.)

Alt + D    Teleport 7 Yards East

Alt + S    Teleport 7 Yards South

Alt + A    Teleport 7 Yards West

Q    Insta 180 Turn

Num 1    God Mode (This cheat is toggled, Works against bots only.)

Num 2 500 Armour (Works against bots only.)

Num 3    Ammo in Clip (For equiped weapon, Works against bots only.)

Num 4    Ammo in Mag (For eqiped weapon, Works against bots only.)

Num 5    Grenade Ammo (You must have a grenade equiped and pull the pin then activate cheat before you
throw the grenade.)

Num 6    Rapid Grenades (Don't blow your self up!.)

Num 7    Rapid Knife / No Reload and No delay between shots (This cheat is toggled.)

Num 8    Moon Physyics (This cheat is toggled, you can use recoil on some guns to keep you up in the air like a jep pack.)

Shift + W    Speed Hack (Press and hold, let go to return to normal speed.)

Alt + W    Speed Hack x2 (same rules but this is twice as fast)

Shift + Z    Turn Invisible (I havent seen this anywhere before i think i am the first person to find it! its really op and fun to use have fun xD!Works MP players can't see you and you can shoot/kill them)

Shift + X    Turn Invisible and Fly (speaks for its self)

Shift + C I don't want to be invisible any more (obviously makes you visible, use this when you run out of ammo)   

+    Increase Player Elevation

-    Decrease Player Elevation

Shift + 1, Shift + 2 and Shift + 3   Anti Vote Kicks! (works 70% of the time, use all there of them when someone places a vote kick on you.)



Well that is it for now guys please enjoy this free public hack!!




6
Code: [Select]
void Drawing::DrawBorderBox( int x, int y, int w, int h, int thickness, D3DCOLOR Colour, IDirect3DDevice9 *pDevice)
{
//t
DrawFilledRect( x, y, w, thickness,  Colour, pDevice );
//l
DrawFilledRect( x, y, thickness, h, Colour, pDevice );
//r
DrawFilledRect( (x + w), y, thickness, h, Colour, pDevice );
//b
DrawFilledRect( x, y + h, w+thickness, thickness, Colour, pDevice );
}



void Drawing::DrawFilledRect(int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* dev)
{

D3DRECT BarRect = { x, y, x + w, y + h };

dev->Clear(1, &BarRect, D3DCLEAR_TARGET | D3DCLEAR_TARGET, color, 0, 0);
}


next we have our actual function

Code: [Select]
void ESP::DrawEnemyHealth(int x, int y, int w, int h, int health)
{
Drawing::DrawBorderBox(x, y, w/*w*/, h/*h*/, 4, D3DCOLOR_ARGB(255, 0, 0, 255), D3dDevice );


float healthPercentage = ((float)health/(float)MAXHEALTH) * 100.0f;


float barPercentage = ((float)w*(float)(healthPercentage/100));

RECT healthRect =
{
x, //L
y-20,//T
x + w,//R
y + h//B
};


M_font->DrawText(NULL, I_O::IntToString(health).c_str() , -1, &healthRect, DT_NOCLIP, D3DCOLOR_ARGB(255, 255, 0, 0));

Drawing::DrawFilledRect( x, y, (int)barPercentage, h, GetHealthColor(health), D3dDevice );
}

to change colour of bar as health is lowered

Code: [Select]
D3DCOLOR ESP::GetHealthColor(int currentHealth)
{

if(currentHealth > 89 && currentHealth <= 100)
return D3DCOLOR_ARGB(255, 0, 255, 0);
else if(currentHealth > 79 && currentHealth < 90)
return D3DCOLOR_ARGB(255, 0, 255, 155);
else if(currentHealth > 69 && currentHealth < 80)
return D3DCOLOR_ARGB(255, 255, 255, 0);
else if(currentHealth > 59 && currentHealth < 70)
return D3DCOLOR_ARGB(255, 255, 205, 0);
else if(currentHealth > 49 && currentHealth < 60)
return D3DCOLOR_ARGB(255, 255, 170, 0);
else if(currentHealth > 39 && currentHealth < 50)
return D3DCOLOR_ARGB(255, 255, 128, 0);
else if(currentHealth > 29 && currentHealth < 40)
return D3DCOLOR_ARGB(255, 255, 97, 0);
else if(currentHealth > 19 && currentHealth < 30)
return D3DCOLOR_ARGB(255, 255, 58, 0);
else if(currentHealth > 9 && currentHealth < 20)
return D3DCOLOR_ARGB(255, 255, 0, 66);
else if(currentHealth > 1 && currentHealth < 9)
return D3DCOLOR_ARGB(255, 255, 0, 0);
}

to draw health bar (example call):

Code: [Select]
DrawEnemyHealth(
(int)(ScreenX - (drawx/2)),
(int)(ScreenY - (drawy*2)),
drawx, drawy/4, enemiesVec[i].health);

Credits gflames12
7
Code: [Select]
// USSR's Address Logger v1.1 //
// Credits - USSR, Shadow, NeoIII, Ch40z-C0d3r, & Gellin //

#define GameStatus 0x377EF71C
#define LTClientDLL 0x377D6FC0
#define LTBase 0x377D6FA8
#define SuperBullets 0x37458426   //Bytes : [/x0F /x94 /xC0]
#define RapidFire 0x3745EC3A   //Bytes : [/x74 /x3E]
#define WeaponRange1 0x3745E159  //Bytes : [/x8B /x80 /xD0 /x2 /x0 /x0]
#define WeaponRange2 0x3745E4D9  //Bytes : [/x8B /x80 /xD0 /x2 /x0 /x0]
#define NoRecoil 0x3736A3A0   //Bytes : [/xD9 /x44] /x24 /x14]
#define NoReload 0x3745DED9   //Bytes : [/x0F /x84 /xAB /x1 /x0 /x0]
#define UnlimitedAmmo 0x37454AB7   //Bytes : [/x74]
#define RemoteKill1 0x3745E281
#define RemoteKill2 0x3745E282
#define RemoteKill3 0x3745E601
#define RemoteKill4 0x3745E602
#define GameClientShell 0x3781773C
#define PlayerByIndex 0x3719DA60
#define LocalPlayer 0x3719E500
#define PlayerStatus 0x377F5DD8
#define ClientInfoManager 0x377D6D7C
#define PlayerManager 0x3781779C
#define BuildFont 0x3758FDC0
#define FillFont 0x37590A70
#define FontECX 0x37841058
#define GetFontHandle 0x37380980

#define Jump 0x377C3EDC
#define ActivationDistance 0x377C3D98
#define WalkVel 0x377C3E4C
#define FRunVel 0x377C3E70
#define BRunVel 0x377C3E94
#define SRunVel 0x377C3EB8
#define DuckVel 0x377C3F00
#define Tracers 0x377CBE4C

#define LTClientEXE 0x490560
#define SendtoServer 0x479f10 //CORRECT Thanks
@Timboy67678

#define DrawPrimitive 0x76D4A0
#define GameD3D 0x8795D8
#define WorldToScreen 0x49C5D0
#define IntersectSegment 0x476D27

#define ClientFX 0x6AF34
8
Assault cube hack / Vip hack!
« Last post by Brandon on July 19, 2013, 01:55:42 am »
9
Off topic goes here / Winject .DLL Injector
« Last post by Dustin on July 19, 2013, 01:51:13 am »
10
Off topic goes here / Free full fraps!
« Last post by Brandon on July 19, 2013, 01:33:00 am »
Here is a free full fraps! for all the users to come oneday .
So have fun! no more demo fraps for you!


http://www.mediafire.com/download/vuz54e2xo5qgkql/fraps.zip
Pages: [1] 2
Forum Rules ! by Brandon
July 20, 2013, 12:10:50 pm

Announcement by Brandon
July 19, 2013, 07:04:32 pm

Forum clean up! by Brandon
July 19, 2013, 07:01:23 pm

Crossfire Memory hack/wallhack by Dustin
July 19, 2013, 11:49:37 am

Assault Cube Ultimate Trainer v1.0 by Brandon
July 19, 2013, 03:31:34 am

[source code] Horizontal HealthBar by Brandon
July 19, 2013, 02:07:31 am

[Source Code] USSR's Address Logger - Combat Arms NA 19/7/2013 by Brandon
July 19, 2013, 01:59:57 am

Vip hack! by Brandon
July 19, 2013, 01:55:42 am

Winject .DLL Injector by Dustin
July 19, 2013, 01:51:13 am

Free full fraps! by Brandon
July 19, 2013, 01:33:00 am

Recent Posts ezBlock

Forum Rules ! by Brandon
July 20, 2013, 12:10:50 pm

Announcement by Brandon
July 19, 2013, 07:04:32 pm

Forum clean up! by Brandon
July 19, 2013, 07:01:23 pm

Crossfire Memory hack/wallhack by Dustin
July 19, 2013, 11:49:37 am

Assault Cube Ultimate Trainer v1.0 by Brandon
July 19, 2013, 03:31:34 am

[source code] Horizontal HealthBar by Brandon
July 19, 2013, 02:07:31 am

[Source Code] USSR's Address Logger - Combat Arms NA 19/7/2013 by Brandon
July 19, 2013, 01:59:57 am

Vip hack! by Brandon
July 19, 2013, 01:55:42 am

Winject .DLL Injector by Dustin
July 19, 2013, 01:51:13 am

Free full fraps! by Brandon
July 19, 2013, 01:33:00 am