Post: renaming gsc and adding infections to 1.13 patch
02-20-2012, 08:33 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); So I am currently making my MW2 1.13 patch, and so far the menu coding is only in the buttons_defult.cfg file, which i renamed because it was orginally a gsc file. If i wanted to add infections to my patch, how would i do that???

I know i rename the gsc file to 'something.cfg', but what about all the orginal code, do i delete that or what happens to it?
I have looked at other patches and it seems like they have just renamed the gsc file and added the infection code.

Also for infections are there specific places where i have to put them.

Can someone please help me and explain this. I am new to patchmaking so DONT HATE HAT3RZ
(adsbygoogle = window.adsbygoogle || []).push({});
02-20-2012, 11:04 AM #2
xePixTvx
Little One
Rename the gsc to "blabla.cfg" then add your infectioncode and then load it with your menu.

Example:
set INF1 "[blabalInfection];Aimbot;InfectMenu;bind DPAD_UP vstr INF3;bind DPAD_DOWN vstr INF2;bind BUTTON_A vstr INF1r;bind BUTTON_B vstr Exit;"
set INF2 "blabalInfection;[Aimbot];InfectMenu;bind DPAD_UP vstr INF1;bind DPAD_DOWN vstr INF3;bind BUTTON_A vstr INF2r;bind BUTTON_B vstr Exit;"
set INF3 "blabalInfection;Aimbot;[InfectMenu];bind DPAD_UP vstr INF2;bind DPAD_DOWN vstr INF1;bind BUTTON_A vstr INF3r;bind BUTTON_B vstr Exit;"

set INF1r "exec blabla.cfg;"

The following 3 users groaned at xePixTvx for this awful post:

PussayPatrol, xMrSuperMoDzZ--, xVz
02-20-2012, 09:03 PM #3
Originally posted by xePixTvx View Post
Rename the gsc to "blabla.cfg" then add your infectioncode and then load it with your menu.

Example:
set INF1 "[blabalInfection];Aimbot;InfectMenu;bind DPAD_UP vstr INF3;bind DPAD_DOWN vstr INF2;bind BUTTON_A vstr INF1r;bind BUTTON_B vstr Exit;"
set INF2 "blabalInfection;[Aimbot];InfectMenu;bind DPAD_UP vstr INF1;bind DPAD_DOWN vstr INF3;bind BUTTON_A vstr INF2r;bind BUTTON_B vstr Exit;"
set INF3 "blabalInfection;Aimbot;[InfectMenu];bind DPAD_UP vstr INF2;bind DPAD_DOWN vstr INF1;bind BUTTON_A vstr INF3r;bind BUTTON_B vstr Exit;"

set INF1r "exec blabla.cfg;"


but wat heppens to all the original code in the gsc, does it just get deleted and bt wmy menu is 1.12 style
02-20-2012, 09:16 PM #4
Teamrider
Bounty hunter
Originally posted by xMarcus97 View Post
but wat heppens to all the original code in the gsc, does it just get deleted and bt wmy menu is 1.12 style


I think (I'm not quite sure) the original code in the gsc is read from the disc.
02-21-2012, 03:01 AM #5
Rustled Jimmies
Who’s Jim Erased?
Originally posted by xMarcus97 View Post
So I am currently making my MW2 1.13 patch, and so far the menu coding is only in the buttons_defult.cfg file, which i renamed because it was orginally a gsc file. If i wanted to add infections to my patch, how would i do that???

I know i rename the gsc file to 'something.cfg', but what about all the orginal code, do i delete that or what happens to it?
I have looked at other patches and it seems like they have just renamed the gsc file and added the infection code.

Also for infections are there specific places where i have to put them.

Can someone please help me and explain this. I am new to patchmaking so DONT HATE HAT3RZ


ok since no one knows what they are talking about ill give you the lowdown. do what xePixTvx said but make sure you execute that CFG that you renamed for the infection. Here are the steps
1. Rename the GSC to what ever you want then add a .cfg after it
2. replace everything in the replaced GSC or cfg with an infection code in it like this
    ui_mapname "mp_terminal;^1Votedoofdoof3's  ^2Radar!;bind BUTTON_BACK toggle scr_game_forceuav 1 0; toggle compass_show_enemies 1 0; toggle g_compassShowEnemies 1 0; toggle compassEnemyFootstepEnabled 1 0; toggle compassEnemyFootstepMaxZ 99999 100; toggle compassRadarUpdateTime 0.001 4; toggle compassFastRadarUpdateTime 2; toggle compassEnemyFootstepMinSpeed 0 140; toggle compassEnemyFootstepMaxRange 99999 500;bind APAD_RIGHT clanname {VD};cg_scoreboardFont 2;lowAmmoWarningColor1 0.33333 0.1019 0.54509 1; lowAmmoWarningColor2 1 0.498 0 1; lowAmmoWarningNoAmmoColor1 0 1 0 1; lowAmmoWarningNoAmmoColor2 1 0.411 0.705 1; lowAmmoWarningNoReloadColor1 1 1 0 1; lowAmmoWarningNoReloadColor2 0 1 1 1;ui_playerPartyColor 1 0.498 0 1;lobby_searchingPartyColor 1 1 0 1;disconnect;"

3. Make it in your menu so you can select the infection
4. For the code just put
    set uavinfection "exec MY_UAV_Infection____.cfg"

5. your done. Hope this helped.
02-21-2012, 05:10 AM #6
Originally posted by RAGE912 View Post
ok since no one knows what they are talking about ill give you the lowdown. do what xePixTvx said but make sure you execute that CFG that you renamed for the infection. Here are the steps
1. Rename the GSC to what ever you want then add a .cfg after it
2. replace everything in the replaced GSC or cfg with an infection code in it like this
    ui_mapname "mp_terminal;^1Votedoofdoof3's  ^2Radar!;bind BUTTON_BACK toggle scr_game_forceuav 1 0; toggle compass_show_enemies 1 0; toggle g_compassShowEnemies 1 0; toggle compassEnemyFootstepEnabled 1 0; toggle compassEnemyFootstepMaxZ 99999 100; toggle compassRadarUpdateTime 0.001 4; toggle compassFastRadarUpdateTime 2; toggle compassEnemyFootstepMinSpeed 0 140; toggle compassEnemyFootstepMaxRange 99999 500;bind APAD_RIGHT clanname {VD};cg_scoreboardFont 2;lowAmmoWarningColor1 0.33333 0.1019 0.54509 1; lowAmmoWarningColor2 1 0.498 0 1; lowAmmoWarningNoAmmoColor1 0 1 0 1; lowAmmoWarningNoAmmoColor2 1 0.411 0.705 1; lowAmmoWarningNoReloadColor1 1 1 0 1; lowAmmoWarningNoReloadColor2 0 1 1 1;ui_playerPartyColor 1 0.498 0 1;lobby_searchingPartyColor 1 1 0 1;disconnect;"

3. Make it in your menu so you can select the infection
4. For the code just put
    set uavinfection "exec MY_UAV_Infection____.cfg"

5. your done. Hope this helped.



thanks for you help, LOL - i wonder wtf happens to the original gsc and if it is built into the disc like the 2nd guy who posted said, what was the point of putting it in a patch, anyway THANKS GUYZ
02-21-2012, 08:16 PM #7
or there is another way i use no need to use there own exec blahahha.cfg for each infection just go to your menu function were u put your code and type

ui_mapname ""/"mp_rust;^5Beast Radar Infection^7;bind BUTTON_BACK g_compassShowEnemies 1;bind APAD_LEFT clanname {@@};disconnect;"/""

hope this help you 2 Happy

The following user thanked katiemorgan15 for this useful post:

Devil Child
02-25-2012, 01:00 AM #8
Originally posted by RAGE912 View Post
ok since no one knows what they are talking about ill give you the lowdown. do what xePixTvx said but make sure you execute that CFG that you renamed for the infection. Here are the steps
1. Rename the GSC to what ever you want then add a .cfg after it
2. replace everything in the replaced GSC or cfg with an infection code in it like this
    ui_mapname "mp_terminal;^1Votedoofdoof3's  ^2Radar!;bind BUTTON_BACK toggle scr_game_forceuav 1 0; toggle compass_show_enemies 1 0; toggle g_compassShowEnemies 1 0; toggle compassEnemyFootstepEnabled 1 0; toggle compassEnemyFootstepMaxZ 99999 100; toggle compassRadarUpdateTime 0.001 4; toggle compassFastRadarUpdateTime 2; toggle compassEnemyFootstepMinSpeed 0 140; toggle compassEnemyFootstepMaxRange 99999 500;bind APAD_RIGHT clanname {VD};cg_scoreboardFont 2;lowAmmoWarningColor1 0.33333 0.1019 0.54509 1; lowAmmoWarningColor2 1 0.498 0 1; lowAmmoWarningNoAmmoColor1 0 1 0 1; lowAmmoWarningNoAmmoColor2 1 0.411 0.705 1; lowAmmoWarningNoReloadColor1 1 1 0 1; lowAmmoWarningNoReloadColor2 0 1 1 1;ui_playerPartyColor 1 0.498 0 1;lobby_searchingPartyColor 1 1 0 1;disconnect;"

3. Make it in your menu so you can select the infection
4. For the code just put
    set uavinfection "exec MY_UAV_Infection____.cfg"

5. your done. Hope this helped.


i renamed everything and deleted all the gsc code and replaced it with an infection code and added to my men\u, but when i go to multiplayer i just get a black screen. FML i dont kno what i am doing wrong, can i send you my patch so you can have a look at it??? please
02-25-2012, 01:04 AM #9
Rustled Jimmies
Who’s Jim Erased?
Originally posted by xMarcus97 View Post
i renamed everything and deleted all the gsc code and replaced it with an infection code and added to my men\u, but when i go to multiplayer i just get a black screen. FML i dont kno what i am doing wrong, can i send you my patch so you can have a look at it??? please


did you edit the zones? I have many problems with black screens. I dont know how to fix them cuz you could have went wrong anywhere?
02-25-2012, 01:08 AM #10
Originally posted by RAGE912 View Post
did you edit the zones? I have many problems with black screens. I dont know how to fix them cuz you could have went wrong anywhere?


umm, i dont kno what zones are?? do you mean those things that say .atr - because i didnt edit those/

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo