 |
 |
Members:
45,107
Threads: 21,673
Posts: 198,974
Currently Active Users: 41 |
 |
|
 |
All times are GMT -7. The time now is 07:40 PM. |
Welcome to the 187ci BF2 Hacks CoD4 Hacks BF2142 Hacks CoD WaW Hacks CSS Hacks forums.
We Have the Best Hacks, the Best Service, and the Best Game Hacking Community around. If you want to get access to our hacks, all you have to do is purchase our V.I.P. package. By doing this you will be supporting our site, our work, and this community. Your contribution will be much appreciated. You can Sign-Up Here.
If you have any problems with the registration process or your account login, please contact us. We look forward to seeing you in the forums!!
|

03-19-2007, 06:08 AM
|
 |
Very 1337
|
|
Join Date: Jun 2006
Posts: 1,530
|
|
|
[1942]No Fog
Credits to krnbanguboi
For lazy players like me, and for people who don't like getting caught by PB, I use this simple but pretty long method of removing fog without hacks on.
1.) Get a program that can edit .rfa files such as WINRFA.
2.) Run WinRFA and open up the map file that you want to remove fog from.
And then select the init.con file. As below.

3.) Scroll down to in the line where it says something like this:
Code:
renderer.fogstart -40
renderer.fogend 400
Change the renderer.fogend number to 999.
4.) Sometimes the above renderer.fog lines will not be available in the init.con's of the .rfa . So there will be another line written:
Code:
Game.setViewDistance 400
Just set that number to 999.
5.) Click the Save Changes when you are finished with the changes.
Done!
P.S. This will no affect your game from loading. Everything should be running perfectly fine. Do NOT change any other line in the .rfa's though.
__________________
Quote:
|
(6:08:11 AM) T2x Industries: so jus leave me to myself i know ill neva be as smart as my massa flyingtorts
|
|

03-19-2007, 04:39 PM
|
|
Rogue Slayer
|
|
Join Date: Jul 2006
Posts: 117
|
|
Quote:
Originally Posted by flyingtoretilas
Pending : Could work for BF2 or BF2142
Code:
if(GetAsyncKeyState(VK_F7))
{
if(ZoomIsOn==TRUE)
{
ReadProcessMemory(hand, (void*)(0xA838F8), &dwPreZoom, sizeof(&dwPreZoom),&dwBytesread);
ReadProcessMemory(hand, (void*)(dwPreZoom + 0x6C),&dwZoomBase,sizeof(&dwZoomBase),&dwBytesread);
ReadProcessMemory(hand,(void*)(dwZoomBase + 0xC4),&ZoomOut, sizeof(&ZoomOut) ,&dwBytesread);
WriteProcessMemory(hand,(void*)(dwZoomBase + 0xC4),&ZoomIn, sizeof(&ZoomIn) ,&dwBytesread);
WriteProcessMemory(hand,(void*)(dwZoomBase + 0xC8),&LockZoom, sizeof(&LockZoom) ,&dwBytesread);
ZoomIsOn=TRUE;
}
else
{
WriteProcessMemory(hand,(void*)(dwZoomBase + 0xC4),&ZoomOut, sizeof(&ZoomOut) ,&dwBytesread);
ZoomIsOn=FALSE;
}
}
|
Though I like the thought of tuts, you need to present these with a little bit of info. Maybe comment each line and tell the reader what is going on. Just an idea. One other thing, did you take this from another site, because this looks pretty much like copy and paste to me. You havent defined any of your variables such as dwZoomBase and ZoomIsOn ect. People won't know the difference between BYTE, DWORD, INT or unless they know the arguments that come with WriteProcessMemory or ReadProcessMemory. The might even need to know that this code would go with a trainer and maybe give them a link to the TMK. This can not be compiled into a dll as then you would use something like VirtualProtect and memcpy. I dont think any noob coder could look at this code and know what to do. Just some ideas for you to kick around.
|

03-19-2007, 04:58 PM
|
 |
Very 1337
|
|
Join Date: Jun 2006
Posts: 1,530
|
|
Sorry dude
I'm not a pro coder yet... not even intermediate, i'm a beginner... The only hack I have gotten to work was the TMK stuff... I just give the sourcecodes out.
__________________
Quote:
|
(6:08:11 AM) T2x Industries: so jus leave me to myself i know ill neva be as smart as my massa flyingtorts
|
|

03-19-2007, 05:01 PM
|
|
Rogue Slayer
|
|
Join Date: Jul 2006
Posts: 117
|
|
Quote:
Originally Posted by JONNHACKETT
ok all this post shall show how noobie I am,,,, wtf do I do with this very sexy looking code
|
Do you know the slightest bit about c++ because thats were you need to start. This code is noncompliable by itself and requires the use of the TMK.
|

03-28-2007, 04:05 PM
|
 |
187ci Clan Leader
Dark Knight
|
|
Join Date: Jun 2006
Location: 187ciclan.com
Posts: 771
|
|
This is the biggest problem with the community. Im not saying that Im a certified coder either but... It seems as if ppl want to post somthing some1 else has already posted on a different forum... Thus creating more curios minds... Coding should not be thought of as it is used now. We need to push ppl less from copy and paste.. (cause this just proves aggravation) the ppl that are pasting these things know not a single thing about half the functions they are pasting, and have no way of providing the answers to the questions that arise.
I have provided a Tutorial to start people out that are really serious about Game cheat " DEVELOPMENT "
Game Cheat "Developing" FOR TOTAL NOOBS!!
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
187ci.com Public Relations Manager
187ci.com Marketing Director
187ci.com Clan Leader
Xfire: sumodeluxe
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|

04-04-2007, 06:51 AM
|
|
Junior Member
Not Such a Newbie
|
|
Join Date: Feb 2007
Posts: 25
|
|
Quote:
Originally Posted by flyingtoretilas
Credits to krnbanguboi
For lazy players like me, and for people who don't like getting caught by PB, I use this simple but pretty long method of removing fog without hacks on.
1.) Get a program that can edit .rfa files such as WINRFA.
2.) Run WinRFA and open up the map file that you want to remove fog from.
And then select the init.con file. As below.

3.) Scroll down to in the line where it says something like this:
Code:
renderer.fogstart -40
renderer.fogend 400
Change the renderer.fogend number to 999.
4.) Sometimes the above renderer.fog lines will not be available in the init.con's of the .rfa . So there will be another line written:
Code:
Game.setViewDistance 400
Just set that number to 999.
5.) Click the Save Changes when you are finished with the changes.
Done!
P.S. This will no affect your game from loading. Everything should be running perfectly fine. Do NOT change any other line in the .rfa's though.
|
Wtf, I can't find any maps at all!! What do I do wrong?? This is working for bf, right??
__________________
Xfire: simpsons225
|

06-16-2007, 12:38 AM
|
|
Junior Member
Newbie
|
|
Join Date: Jun 2007
Posts: 3
|
|
|
these codes stil undetectable? and do i just compile em in microsoft c++ visual
|

06-16-2007, 03:26 AM
|
|
Administrator
Very 1337
|
|
Join Date: Sep 2006
Location: Australia
Posts: 4,523
|
|
Quote:
Originally Posted by bonovro
these codes stil undetectable? and do i just compile em in microsoft c++ visual
|
They never were undetected.
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Being kicked by PunkBuster? Click To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. (Doesn't work if you don't have a Subscription)
Want to Buy a Subscription? Go To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Already a Member? Go To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. to Buy a new Sub or Upgrade your Existing one
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|

06-16-2007, 05:57 PM
|
|
Junior Member
Newbie
|
|
Join Date: Jun 2007
Posts: 3
|
|
Quote:
Originally Posted by Timtam
They never were undetected.
|
lmao ok ill see what i can do with these
|

06-19-2007, 12:58 AM
|
|
Not Such a Newbie
|
|
Join Date: Jun 2007
Posts: 13
|
|
umm how do u compile that cross hair source code? what kind of file do u save it as? im a noob...as u can tell
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Total Page Views: 33,009,894, Page Views Today: 59,119
Page generated in 0.12673211 seconds (92.96% PHP - 7.04% MySQL) with 14 queries
 |
All times are GMT -7. The time now is 07:40 PM. |
 |
|
|
Search Engine Friendly URLs by vBSEO 3.3.0 |
|
|
 |