UGX-Mods

Call of Duty 5: World at War => Help Desk => Mapping => Topic started by: fatboypro on April 02, 2014, 11:03:27 pm

Title: default girl model
Post by: fatboypro on April 02, 2014, 11:03:27 pm
so when i play my map player one is the default player model (the girl) and player 2, 3, and 4 are invisible and player 1 gun is in player 2 face
Title: Re: default girl model
Post by: jei9363 on April 03, 2014, 12:00:52 am
Code Snippet
Plaintext
rawfile,mptype/nazi_zombie_heroes.gsc
rawfile,character/char_zomb_player_0.gsc
rawfile,character/char_zomb_player_1.gsc
rawfile,character/char_zomb_player_2.gsc
rawfile,character/char_zomb_player_3.gsc

xmodel,char_usa_marine_polonsky_zomb
xmodel,char_rus_guard_chernova_zomb
xmodel,char_jap_impinf_officer_body_zomb
xmodel,char_jap_impinf_officer_head
xmodel,char_jap_impinf_officer_hat_zomb
xmodel,char_ger_ansel_body_zomb
xmodel,char_ger_ansel_head_zomb
Title: Re: default girl model
Post by: fatboypro on April 03, 2014, 12:05:32 am
Code Snippet
Plaintext
rawfile,mptype/nazi_zombie_heroes.gsc
rawfile,character/char_zomb_player_0.gsc
rawfile,character/char_zomb_player_1.gsc
rawfile,character/char_zomb_player_2.gsc
rawfile,character/char_zomb_player_3.gsc

xmodel,char_usa_marine_polonsky_zomb
xmodel,char_rus_guard_chernova_zomb
xmodel,char_jap_impinf_officer_body_zomb
xmodel,char_jap_impinf_officer_head
xmodel,char_jap_impinf_officer_hat_zomb
xmodel,char_ger_ansel_body_zomb
xmodel,char_ger_ansel_head_zomb
where do i add this? mod.csv?
Title: Re: default girl model
Post by: pashan on April 03, 2014, 01:26:08 am
Go to your mapname.gsc

and search zombiemode

it should be line 416 or near line 416

it will look like this

Code Snippet
Plaintext
else if( GetDvar( "zombiemode" ) == "1" || IsSubStr( level.script, "nazi_zombie_" ) || level.script == "zombie_test_map" )

then replace
that line with this

Code Snippet
Plaintext
else if( level.script == "MAPNAME" || GetDvar( "zombiemode" ) == "1" || IsSubStr( level.script, "nazi_zombie_" ) || level.script == "zombie_test_map" )

change MAPNAME to your map name

it should work  :)
Title: Re: default girl model
Post by: MakeCents on April 03, 2014, 05:28:39 pm
so when i play my map player one is the default player model (the girl) and player 2, 3, and 4 are invisible and player 1 gun is in player 2 face

Do you have the old _loadout.gsc? It is about 12-13kb. The newer _loadout.gsc (http://_loadout.gsc) is about 22-23 kb. This happened to me once when I copied the old one into my map for some reason. I had thought I replaced all my original ones.