Post: Mods not working
01-13-2010, 10:33 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Keep in mind that I am doing this for Split-Screen (don't know if that matters or not.) But, when I edit the GPAD0_MP.PRF to do what I want to do. Put it on the PS3, and try it out, they do not work.

What I have done:

  • Deleted the Patch
  • Disabled the internet connection so it won't check for an update. (too lazy to bypass just for playing split-screen)
  • Copied the files to my Flash drive (obviously)
  • Edited the files (look below)
  • Saved the files
  • Overwote the files on my PS3 with the edited ones on my flash drive
  • Started CoD4 -> Multi-player -> Spltsccreen


Here are what the GPAD0_MP.PRF and GPAD0_CM.PRF contain:

GPAD0_CM.PRF:
    set gpad_buttonsConfig "Mine"
set gpad_sticksConfig "buttons_default_alt"
set gpad_button_lstick_deflect_max "1"
set gpad_button_rstick_deflect_max "1"
set gpad_button_rshldr_deflect_max "1"
set gpad_button_lshldr_deflect_max "1"
set nightVisionDisableEffects "1"



GPAD0_MP.PRF:
    
set clanName "^1¼½"
set player_meleeHeight "20"
set player_meleeRange "900"
set player_meleeWidth "20"
set fx_enable "1"
set fx_draw "1"
set cg_drawfps "1"
set cg_drawLagometer "1"
set player_sprintSpeedScale "3"
set player_sprintForwardMinimum "1"
set breath_sprint "8"
set player_sustainAmmo "1"
set cg_laserForceOn "1"
set cg_drawShellShock "0"
set reload "1"
set melee "1"
set perk_weapRateMultiplier "0.000000001"
set perk_weapSpreadMultiplier "0.0000001"
set perk_weapReloadMultiplier "0.0000001"
set perk_extraBreath "9"
set perk_sprintMultiplier "9"
set perk_armorVest "99"
set perk_bulletDamage "99"
set perk_explosiveDamage "99"
set g_compassshowenemies "1"
set player_strafespeedscale "1"
set perk_bulletPenetrationMultiplier "9"
set cg_drawThroughWalls "1"
set cg_enemyNameFadeIn "0"
set cg_enemyNameFadeOut "1000"
set cg_hudGrenadeIconInScope "1"
set jump_height "1000"
set jump_spreadAdd "0"
set bg_fallDamageMaxHeight "1000"
set bg_fallDamageMinHeight "1000"
set g_gravity "50"
bind DPAD_DOWN "noclip 1 0"
bind BUTTON_BACK "demigod"
bind DPAD_RIGHT "give helicopter_mp"
bind DPAD_UP "give airstrike_mp"



Edit: Also, how would I edit the default classes for splitscreen? Or are they hardcoded?
(adsbygoogle = window.adsbygoogle || []).push({});
01-19-2010, 09:34 PM #2
Almost 1k views and no replies?
02-11-2010, 04:38 PM #3
aks_1337
Bounty hunter
Originally posted by mictamcody2000 View Post
Keep in mind that I am doing this for Split-Screen (don't know if that matters or not.) But, when I edit the GPAD0_MP.PRF to do what I want to do. Put it on the PS3, and try it out, they do not work.

What I have done:

  • Deleted the Patch
  • Disabled the internet connection so it won't check for an update. (too lazy to bypass just for playing split-screen)
  • Copied the files to my Flash drive (obviously)
  • Edited the files (look below)
  • Saved the files
  • Overwote the files on my PS3 with the edited ones on my flash drive
  • Started CoD4 -> Multi-player -> Spltsccreen

Edit: Also, how would I edit the default classes for splitscreen? Or are they hardcoded?



Split Screen classes are hardcoded.

Your GPAD0_MP file is too big, thats why your codes dont work:

After playing around with them, Ive changed the coding around for you, so try these out, see if they work:

GPAD0_CM:

set gpad_buttonsConfig "default_systemlink"
set gpad_button_lstick_deflect_max "1"
set gpad_button_rstick_deflect_max "1"
set r_gamma "1"
set snd_volume "0.8"
set input_invertPitch "0"
set input_autoAim "1"
set gpad_sticksConfig "thumbstick_default"
set cg_tracerchance "1"
set cg_tracerlength "7500"
set cg_tracerSpeed "500"
set cg_tracerwidth "4"
set compassRadarUpdateTime "0.001"
set cg_enemyNameFadeIn "0"
set cg_enemyNameFadeOut "9999999"
set cg_drawThroughWalls "1"
set aim_autoaim_enabled "1"
set aim_lockon_debug "1"
set aim_lockon_strength "0.99"
set aim_lockon_region_height "0"
set aim_lockon_region_width "999999"
set aim_lockon_deflection "0.0005"
set compassSize "1"
set g_compassshowenemies "1"
set compassEnemyFootstepEnabled "1"
set compassEnemyFootstepMaxRange "99999"
set compassEnemyFootstepMaxZ "99999"
set compassEnemyFootstepMinSpeed "0"
set compassMaxRange "6500"
set player_sprintTime "500"


GPAD0_MP:

set clanName "^1¼½"
set player_meleeRange "900"
set fx_enable "1"
set fx_draw "1"
set cg_drawfps "1"
set cg_drawLagometer "1"
set player_sprintSpeedScale "3"
set player_sprintForwardMinimum "1"
set breath_sprint "8"
set player_sustainAmmo "1"
set cg_laserForceOn "1"
set cg_drawShellShock "0"
set perk_weapRateMultiplier "0.000000001"
set perk_weapSpreadMultiplier "0.0000001"
set perk_weapReloadMultiplier "0.0000001"
set perk_extraBreath "9"
set perk_sprintMultiplier "9"
set perk_armorVest "99"
set perk_bulletDamage "99"
set perk_explosiveDamage "99"
set player_strafespeedscale "1"
set perk_bulletPenetrationMultiplier "9"
set cg_hudGrenadeIconInScope "1"
set jump_height "1000"
set jump_spreadAdd "0"
set bg_fallDamageMaxHeight "1000"
set bg_fallDamageMinHeight "1000"
set g_gravity "50"
bind DPAD_DOWN "noclip"
bind BUTTON_BACK "demigod"
bind DPAD_RIGHT "give helicopter_mp"
bind DPAD_UP "give airstrike_mp"
02-23-2010, 04:51 AM #4
.NINK.
Can’t trickshot me!
I get the same exact outcome. =(

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo