MPC Forums
BattleApps


Go Back   MPC Forums > ..:: Games ::.. > Call of Duty: General > Call of Duty

Call of Duty The Original Call of Duty

Reply
 
Thread Tools
Old 20th August 2005, 18:33   #1
Sycore
Teh CoD Haxor
Assassin
 
Sycore's Avatar
 
[Release] Sycore CoD source

this is not all of my stuff that i have. i might release more of my stuff later on.for now i am only including some of the basic stuff like......

-colored models
-wallhack
-nightmode
-flashing models
-wireframe
-recoil
-no-fog
-no scope

give me credit and the people credited in the source credit if u use any of this code.
Attached Files
File Type: zip Sycore public source.zip (190.2 KB, 398 views)
Sycore is offline   Reply With Quote
Old 20th August 2005, 22:50   #2
VoN DuTch™
-- SILVER ENT. --
Evil One
 
Uploaded::

Filename: Sycs CoD Hook Source.zip
Database: MPCDownloads.com -> Downloads -> Call of Duty

---

Profile: http://www.mpcdownloads.com/forums/d...o=file&id=5444
__________________

- MPC.Forum :: MPCForum.com
- MPC.Downloads :: MPCDownloads.com
---
- UC.Forum :: UnknownCheats.com
---
- EC.Forum :: EliteCoders.org
VoN DuTch™ is offline   Reply With Quote
Old 21st August 2005, 02:56   #3
xtool
Lord of Destiny
 
Awesome! Thanks Sycore. Might have to look in the closet for my prog tool now. *Laughs*
xtool is offline   Reply With Quote
Old 23rd August 2005, 07:34   #4
r34LitY
xtreMe visioN
Devil of Hell
 
r34LitY's Avatar
 
this is one of the best releases i seen pub in awhile. yet no one post cuz they dont know wtf it is =]
__________________
Signature removed, User warned for breaking the signature rules. (by gil)
r34LitY is offline   Reply With Quote
Old 23rd August 2005, 15:13   #5
j!mmY
memory/d3d coder :)
War Titan
 
j!mmY's Avatar
 
nice release but how do you turn off flash models lol some people might get seizure
j!mmY is offline   Reply With Quote
Old 24th August 2005, 04:26   #6
Sycore
Teh CoD Haxor
Assassin
 
Sycore's Avatar
 
change it instead of makeing it flashblue(); just make it blue();
Sycore is offline   Reply With Quote
Old 7th September 2005, 10:46   #7
Virtue666
 
nice release
Virtue666 is offline   Reply With Quote
Old 15th September 2005, 04:22   #8
mathewps2
Guest
 
lol

good job on the release, but the guns also shoot sideways too :speechles
  Reply With Quote
Old 17th September 2005, 00:43   #9
somekidlol
MPC Member
 
somekidlol's Avatar
 
how do u toggle the flash off jesusss christttt
somekidlol is offline   Reply With Quote
Old 28th September 2005, 21:01   #10
Bruce231
Magician Apprentice
 
Where do you go to toggle recoil off. is there an in-game menu? where do you go to toggle stuff?
Bruce231 is offline   Reply With Quote
Old 29th September 2005, 01:22   #11
BlackDove
Moderator &
Somewhat Evil
 
BlackDove's Avatar
 
It's open-source!

How about looking in the opengl.cpp file for key references or GetAsyncKeyState calls. You do not need C++ either. Just open the C++ files with notepad.

Code:
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
///////////////////////////////WireFrame Toggles//////////////////////////
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
	       if((GetAsyncKeyState(VK_NUMPAD1) & 0x8000) && wireframe==0)
		   {
			   wireframe = 1;
		   }
		   if((GetAsyncKeyState(VK_NUMPAD2) & 0x8000) && wireframe==1)
		   {
			   wireframe = 0;
		   }
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
/////////////////////////////NIGHT-Mode toggles//////////////////////////
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
		   if((GetAsyncKeyState(VK_NUMPAD3) & 0x8000) && nightmode==0)
		   {
			   nightmode = 1;
		   }
		   if((GetAsyncKeyState(VK_NUMPAD4) & 0x8000) && nightmode==1)
		   {
			   nightmode = 0;
		   }
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
///////////////////////////////NO-FOG Toggles////////////////////////////
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
           if((GetAsyncKeyState(VK_NUMPAD5) & 0x8000) && nofog==0)
		   {
			   nofog = 1;
		   }
		   if((GetAsyncKeyState(VK_NUMPAD6) & 0x8000) && nofog==1)
		   {
			   nofog = 0;
		   }
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
///////////////////////////////Wallhack Toggles//////////////////////////
/////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////// 
           if((GetAsyncKeyState(VK_NUMPAD7) & 0x8000) && wallhack==0)
		   {
			   wallhack = 1;
		   }
		   if((GetAsyncKeyState(VK_NUMPAD8) & 0x8000) && wallhack==1)
		   {
			   wallhack = 0;
		   }
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
//////////////////////////////Flashing model toggles/////////////////////
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
           if((GetAsyncKeyState(VK_NUMPAD7) & 0x8000) && fmodels==0)
		   {
			   fmodels = 1;
		   }
		   if((GetAsyncKeyState(VK_NUMPAD8) & 0x8000) && fmodels==1)
		   {
			   fmodels = 0;
		   }
           if((GetAsyncKeyState(VK_F3) & 0x8000) && fmodels==0)
		   {
			   normalmodels = 1;
		   }
		   if((GetAsyncKeyState(VK_F4) & 0x8000) && normalmodels==1)
		   {
			   normalmodels = 0;
		   }
/*void APIENTRY moose_glViewport (GLint x,  GLint y,  GLsizei width,  GLsizei height)
{
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
///////////////////////////////NO-Recoil/////////////////////////////////
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
			if(GetAsyncKeyState(VK_LBUTTON))
		{
			recoil=true;
			{
				if((xrecoil > 20) && (xrecoil < 30))
				{
					MOUSEEVENTF_MOVE,0,3.0f,0,0;
				}
				
				
				if((xrecoil > 30) && (xrecoil < 40))
				{
					MOUSEEVENTF_MOVE,0,-0.5f,0,0;
				}
				
				if(xrecoil > 40)
				recoil=false;
			}
		}
		xrecoil++;
		}*/
}
}
Assuming you have a compatible C++ compiler and want the recoil to be toggleable:

The recoil toggle is commented out so you will need to remove /* and */. After doing so and recompiling the hack, you should be able to toggle the recoil.

Last edited by BlackDove; 29th September 2005 at 01:25..
BlackDove is offline   Reply With Quote
Old 29th September 2005, 04:09   #12
Bruce231
Magician Apprentice
 
I dont have a C++ compiler i dont think (sorry about this im not and experienced Hacker, but experienced CoD player so i dont want the no recoil) so i guess thats why the Numpad buttons dont work. So i can just turn it off manually by doing what? Also i know this has been answered but what about the Flashing models, where do i change it *(i know what to change)* and also turn the Dot off. (laggie)

Sorry and thanks
Bruce231 is offline   Reply With Quote
Old 10th October 2005, 05:38   #13
ion kid2005
New MPC User
 
HEY GUYS, JUST A HeADS UP... TJIS FILE CONTAINS TROJEN HORSES!!!!!
ion kid2005 is offline   Reply With Quote
Old 10th October 2005, 06:00   #14
[oC]pingu
that guy
Somewhat Evil
 
[oC]pingu's Avatar
 
Quote:
Originally Posted by ion kid2005
HEY GUYS, JUST A HeADS UP... TJIS FILE CONTAINS TROJEN HORSES!!!!!
A Trojan Horse in a source? WTF have you been smoking?
__________________
www.gamedeception.net
[oC]pingu is offline   Reply With Quote
Old 10th October 2005, 06:19   #15
Sycore
Teh CoD Haxor
Assassin
 
Sycore's Avatar
 
lmao why would i put a trojen horse into a source even if it was possible ? lol im known here and trusted (i think) lol i wouldnt do anything like that.
Sycore is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 19:38.

Powered by vBulletin® Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Style Provided By: Wrestling Clique - Wrestling Forums


Page generated in 0.17476 seconds with 12 queries