Results 1 to 5 of 5

Threaded View

  1. #1
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy

    How to make Fog RGB Changer on Gellin's Base !

    Here is how to make fog colors in Gellin's base guys! Just wanted to share with you how those other guys did it

    Add this code to base.cpp:
    Code:
                    char rd[3], gr[3], bl[3];
    			if(Menu2.mOpt[7].nopt>0){
    				sprintf(rd, "FogR %d" , Menu2.mOpt[8].nopt);
    				sprintf(gr, "FogG %d" , Menu2.mOpt[9].nopt);
    				sprintf(bl, "FogB %d" , Menu2.mOpt[10].nopt);
    				this->PushToConsole((const char *)rd);
    				this->PushToConsole((const char *)gr);
    				this->PushToConsole((const char *)bl);
    			}else{
     				this->PushToConsole("FogR 0");
    				this->PushToConsole("FogG 0");
    				this->PushToConsole("FogB 0");
    			}
    Add this to menu.cpp in the second menu's intiation code.

    Code:
    		this->AddItemToMenu("Fog Editor"   ,1, 0);
    		this->AddItemToMenu("Fog Red Val"  ,255, 0);
    		this->AddItemToMenu("Fog Blue Val"  ,255, 0);
    		this->AddItemToMenu("Fog Green Val"  ,255, 0);
    This works with the edited version of gellins base that I released. If you're smart enough you can find it and implement this code. Heck the hack might already have it.

    Please don't complain if you don't know what you're doin. Thanks.
    Last edited by Crash; 01-19-2010 at 03:32 PM.

  2. The Following 3 Users Say Thank You to Crash For This Useful Post:

    matypatty (03-02-2010),MGHP (01-20-2010),why06 (01-20-2010)

Similar Threads

  1. [Release]How to make your own IP changer.
    By Rawr Rawr in forum Game Hacking Tutorials
    Replies: 9
    Last Post: 02-09-2014, 05:18 AM
  2. How to make a IP changer in VB6
    By trevor206 in forum Visual Basic Programming
    Replies: 10
    Last Post: 01-16-2010, 03:23 PM
  3. How to make a Ip changer? in visual basics 2008
    By deathninjak0 in forum Programming Tutorial Requests
    Replies: 2
    Last Post: 11-25-2009, 05:00 PM
  4. [Request] Does anyone know how to make a ip changer
    By trevor206 in forum Visual Basic Programming
    Replies: 5
    Last Post: 11-14-2009, 10:24 PM
  5. How do i make fog at the bottom?
    By Ariez in forum Help & Requests
    Replies: 3
    Last Post: 04-23-2009, 04:45 PM