Results 1 to 12 of 12
  1. #1
    15silver17's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    1

    How Do i get R_FullBright on 4D1?

    I was wondering how to get R_fullBright since i have a Bad Pc and i wanna play in
    The So called "Cartoony" Graphics.

  2. #2
    Joaogan1's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    12
    u can use -InSaNe- hack,it also has no recoil just search for [Steam - IW5M] -InSaNe- Hax (No-Recoil, FullBright & No-Fog)
    Going first always works

  3. #3
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by Joaogan1 View Post
    u can use -InSaNe- hack,it also has no recoil just search for [Steam - IW5M] -InSaNe- Hax (No-Recoil, FullBright & No-Fog)
    Or you can do it yourself:
    Code:
    0x5F9690C
    Change the 9 to 5.

    Like so:

    Code:
    *(int*)0x5F9690C = 5;
    
    Last edited by Kenshin13; 10-06-2012 at 01:13 PM.

  4. #4
    DoubleRainbow's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    Quote Originally Posted by Kenshin13 View Post
    Or you can do it yourself:
    Code:
    0x5F9690C
    Change the 9 to 5.

    Like so:

    Code:
    *(int*)0x5F9690C = 5;
    
    How do you use this code?

  5. #5
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by DoubleRainbow View Post
    How do you use this code?
    With Visual C++

  6. The Following User Says Thank You to Kenshin13 For This Useful Post:

    DoubleRainbow (10-06-2012)

  7. #6
    DoubleRainbow's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    Quote Originally Posted by Kenshin13 View Post
    With Visual C++
    Thx but i would love to see a tutorial thx

  8. #7
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by DoubleRainbow View Post
    Thx but i would love to see a tutorial thx
    Google is a lovely resource:

    Code:
    #include <Windows.h>
    
    void DOFullbright()
    {
      while(1)
      {
        *(int*)0x5F9690C = 5;
      }
    }
    
    BOOL APIENTRY DllMain(HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved)
    {
      if(dwReason == DLL_PROCESS_ATTACH)
        CreateThread(0, 0, (LPTRHEAD_START_ROUTINE)DOFullbright, 0, 0, 0);
      return FALSE;
    }
    Don't ask me any more questions. Figure it out yourself.
    Last edited by Kenshin13; 10-06-2012 at 11:57 PM.

  9. The Following User Says Thank You to Kenshin13 For This Useful Post:

    DoubleRainbow (10-06-2012)

  10. #8
    DoubleRainbow's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    Quote Originally Posted by Kenshin13 View Post
    Google is a lovely resource:

    Code:
    #include <Windows.h>
    
    void DOFullbright()
    {
      while(1)
      {
        *(int*)0x5F9690C = 5;
      }
    }
    
    BOOL APIENTRY DllMain(HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved)
    {
      if(dwReason == DLL_PROCESS_ATTACH)
        CreateThread(0, 0, (LPTRHEAD_START_ROUTINE)DOFullbright, 0, 0, 0);
      return FALSE;
    }
    Don't ask me any more questions. Figure it out yourself.
    Whatever dude, thx xD

  11. #9
    ThisIsNH9's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    63
    My Mood
    Devilish
    Quote Originally Posted by Kenshin13 View Post
    Google is a lovely resource:

    Code:
    #include <Windows.h>
    
    void DOFullbright()
    {
      while(1)
      {
        *(int*)0x5F9690C = 5;
      }
    }
    
    BOOL APIENTRY DllMain(HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved)
    {
      if(dwReason == DLL_PROCESS_ATTACH)
        CreateThread(0, 0, (LPTRHEAD_START_ROUTINE)DOFullbright, 0, 0, 0);
      return FALSE;
    }
    Don't ask me any more questions. Figure it out yourself.
    kenshins always wrong, its 4 not 5 and you can use cheat engine

  12. The Following User Says Thank You to ThisIsNH9 For This Useful Post:

    Jorndel (10-07-2012)

  13. #10
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by ThisIsNH9 View Post
    kenshins always wrong, its 4 not 5 and you can use cheat engine
    I think we can say that Cheat Engine is "safer" than injecting an DLL.
    +It's less work

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  14. #11
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Well minor mistake. I confused cg_fog with it. CE is easier and you can draw how to do that from my code :P

  15. #12
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    And to find offsets for newer versions:

    Code:
    DWORD FullBright = FindPattern("\xC7\x05\x00\x00\x00\x00\x00\x00\x00\x00\xC7\x05\x00\x00\x00\x00\x00\x00\x00\x00\xC7\x05\x00\x00\x00\x00\x00\x00\x00\x00\xE9", "xx????????xx????????xx????????x");
    
    FullBright  = ( *( DWORD* )( FullBright  + 0x2 ) ) + 0x4;
    /Closed


    CoD Minion from 09/19/2012 to 01/10/2013

Similar Threads

  1. [help]how would i get the superjump address?
    By fable741 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-08-2007, 08:37 AM
  2. How do i get Korean???
    By Cataldo in forum WarRock - International Hacks
    Replies: 1
    Last Post: 04-11-2007, 11:17 PM
  3. how do i get hacks 4 war rock???
    By bigsyph in forum WarRock - International Hacks
    Replies: 6
    Last Post: 04-08-2007, 03:29 PM
  4. how do i get unbanned?
    By cool4345 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 03-04-2007, 03:50 AM
  5. how not to get caught
    By gavone26 in forum WarRock - International Hacks
    Replies: 13
    Last Post: 03-03-2007, 08:24 AM