MODSonline
  Welcome Guest to MODSonline Home | Forums | Register | Login
Main-Menu
Home
Login
Register
Add Download
Add News
Add Tutorial *
Forums

Advertise
Affiliate Store US *
Affiliate Store UK *
Affiliate Store CA *
Angry Letter Generator
Avatar Upload
Calendar of Games
Contact
Downloads
FAQs
Forums
Member List
Member Projects
News
News Grabber *
Policy
Polls
Private Messages
Reviews
Screenshot Gallery
Search
Servers - Game
Store - Shirts *
Subscribe
Topics
Tutorials
Weblinks
Wiki *
Tutorials
CoD Mapping
CoDUO Mapping
CoD2 Mapping
CoD4 Mapping
CoD FAQs
HL2 Mapping
HL2 FAQs
SOF1 Mapping
Crysis Mapping
Q4 Mapping
Doom 3 Mapping
Doom 3 FAQs
UT2K3 Mapping
SOF2 Mapping
SOF2 FAQs

Lightray Modeling
General Modeling
General Modding
Adobe Photoshop
Common Mapping Errors

Readme.txt Generator
Members-Online
tourist.Tam [Forum]
Apoc_alypse [Forum]
Strelnieks [Today]

3 Members and 10 Guests
Chat MODSonline
0 People Now Chatting
MODSOnline TeamSpeak

download TeamSpeak

In-The-News
Friday, Sep. 5th
W.@W. Beta in October!
Friday, Sep. 5th
MODSonair Episode 143
Thursday, Sep. 4th
SnA The Game!
Wednesday, Sep. 3rd
Battlefield Heroes - Victory Village Trailer
Sunday, Aug. 31st
MODSonair 143 LIVE
Latest Poll
Want a MODSonline Wiki for various games?
I think a Wiki would be a great addition to MODSonline. 77.94%
I could see a benefit of a Wiki. 3.43%
I think it would take away from the community. 4.9%
Wiki sites are never good. 3.43%
Wiki... isn't that Buck Roger's robot slave? 10.29%
Read More...
13 comments

Newsletter
Name:
Email:
Newsletter Archives
Your Membership
User Name:
Password:
Register.
In The Forums
How many people
CoD4 General Gam.. Posts: (3) Views: (24) by EBReaper
[WIP] mp_trench
CoD4 Custom Map .. Posts: (5) Views: (100) by djt93901
weapons mod
CoD 4 Scripting.. Posts: (2) Views: (19) by mattneed
help with fx
CoD 4 Level Desi.. Posts: (3) Views: (27) by voidsource
Google 468 Banner Half-Life 2 Mods for Dummies
Typhoon Servers
Forums
MODSonline.com Forums

Welcome to the MODSonline.com forums. Looking for Frequently Asked Questions? Check out our FAQs section or search it out using the SEARCH link below. If you are new here, you may want to check out our rules and this great user's guide to the forums and the website.
For more mapping and modding information, see our Wiki: MODSonWiki.com

Jump To:
Forum: All Forums : Call of Duty
Category: CoDUO Level Design
CoD United Offensive mapping and level design.
Moderators: foyleman, rEdrUmMDK, Foxhound, Wyatt_Earp, Rasta, StrYdeR, The_Caretaker, Cypher2004, supersword, batistablr
Latest Posts
Subscribed Posts
Search
Restricted Access Restricted Access
Page
Next Page
subscribe
Author Topic: Found a rifle mod...trying to edit it now.....
Wayne16
General Member
Since: Apr 30, 2005
Posts: 109
Last: Aug 5, 2008
[view latest posts]
Level 4
Category: CoDUO Level Design
Posted: Tuesday, Jul. 22, 2008 10:50 pm
Hey everyone i have found a really nice bolt rifle mod.

On the selection menu for all teams German, American, Russian, and British it shows just three rifles. The Kar98, nagant, and the Enfield....

So my question is. I would like to add the Russian Sniper, German Sniper, and the American Sniper. I have done everything i need to in the scriptmenus folder for all teams. But when i go into game, select a team the selection menu goes blank, then when i hit esc to go to it to select something it takes me to the main menu.....how can i fix this so it shows the weapons and i can get them to work right thanks wayne...
general99
General Member
Since: Oct 31, 2004
Posts: 251
Last: Aug 13, 2008
[view latest posts]
Level 5
Category: CoDUO Level Design
Posted: Wednesday, Jul. 23, 2008 01:47 am
Sounds like you've missed a curly bracket or semicolon somewhere.

You will also have to edit _teams.gsc to precache the extra weapons for each nationality.
Wayne16
General Member
Since: Apr 30, 2005
Posts: 109
Last: Aug 5, 2008
[view latest posts]
Level 4
Category: CoDUO Level Design
Posted: Wednesday, Jul. 23, 2008 12:18 pm
This is the weapon_german.menu that i re-did for the mod....

This is just the part with the weapons and below....nothing above was changed..

// MENU CHOICES
itemDef
{
name "button_nagant"
visible 1
rect WEAPON_BUTTON_RECT_FIRST
origin ORIGIN_MENUWINDOW
forecolor 1 1 1 1
type ITEM_TYPE_BUTTON
text "@MPMENU_1_MOSINNAGANT"
textfont UI_FONT_NORMAL
textscale .24
textalignx 8
textaligny 16
cvartest "ui_allow_nagant"
hideCvar { "0" }
action
{
play "mouse_click";
scriptMenuResponse "mosin_nagant_mp";
close weapon_german;
}
onFocus
{
hide kar98k_info;
hide enfield_info;
hide kar98ksniper_info;
hide springfield_info;
hide nagantsniper_info;
play "mouse_over";
show nagant_info;
show weapon_propertiestext;
}
}
execKey "1" { play "mouse_click"; scriptMenuResponse "mosin_nagant_mp"; close weapon_german }

itemDef
{
name "button_kar98k"
visible 1
rect WEAPON_BUTTON_RECT_SECOND
origin ORIGIN_MENUWINDOW
forecolor 1 1 1 1
type ITEM_TYPE_BUTTON
text "@2. Kar98K"
textfont UI_FONT_NORMAL
textscale .24
textalignx 8
textaligny 16
cvartest "ui_allow_kar98k"
hideCvar { "0" }
action
{
play "mouse_click";
scriptMenuResponse "kar98k_mp";
close weapon_german;
}
onFocus
{
hide nagant_info;
hide enfield_info;
hide kar98ksniper_info;
hide springfield_info;
hide nagantsniper_info;
play "mouse_over";
show kar98k_info;
show weapon_propertiestext;
}
}
execKey "2" { play "mouse_click"; scriptMenuResponse "kar98k_mp"; close weapon_german }

itemDef
{
name "button_enfield"
visible 1
rect WEAPON_BUTTON_RECT_THIRD
origin ORIGIN_MENUWINDOW
forecolor 1 1 1 1
type ITEM_TYPE_BUTTON
text "@3. Lee Enfield"
textfont UI_FONT_NORMAL
textscale .24
textalignx 8
textaligny 16
cvartest "ui_allow_enfield"
hideCvar { "0" }
action
{
play "mouse_click";
scriptMenuResponse "enfield_mp";
close weapon_german;
}
onFocus
{
hide nagant_info;
hide kar98k_info;
hide kar98ksniper_info;
hide springfield_info;
hide nagantsniper_info;
play "mouse_over";
show enfield_info;
show weapon_propertiestext;
}
}
execKey "3" { play "mouse_click"; scriptMenuResponse "enfield_mp"; close weapon_german }

itemDef
{
name "button_kar98ksniper"
visible 1
rect WEAPON_BUTTON_RECT_FIFTH
origin ORIGIN_MENUWINDOW
forecolor 1 1 1 1
type ITEM_TYPE_BUTTON
text "@GMI_MPMENU_5_SCOPED_KAR98K"
textfont UI_FONT_NORMAL
textscale .24
textalignx 8
textaligny 16
cvartest "ui_allow_kar98ksniper"
hideCvar { "0" }
action
{
play "mouse_click";
scriptMenuResponse "kar98k_sniper_mp";
close weapon_german;
}
onFocus
{
hide nagant_info;
hide kar98k_info;
hide enfield_info;
hide springfield_info;
hide nagantsniper_info;
play "mouse_over";
show kar98ksniper_info;
show weapon_propertiestext;
}
}
execKey "4" { play "mouse_click"; scriptMenuResponse "kar98k_sniper_mp"; close weapon_german }

itemDef
{
name "button_springfield"
visible 1
rect WEAPON_BUTTON_RECT_FIFTH
origin ORIGIN_MENUWINDOW
forecolor 1 1 1 1
type ITEM_TYPE_BUTTON
text "@MPMENU_5_SPRINGFIELD"
textfont UI_FONT_NORMAL
textscale .24
textalignx 8
textaligny 16
cvartest "ui_allow_springfield"
hideCvar { "0" }
action
{
play "mouse_click";
scriptMenuResponse "springfield_mp";
close weapon_american;
}
onFocus
{
hide nagant_info;
hide kar98k_info;
hide enfield_info;
hide kar98ksniper_info;
hide nagantsniper_info;
play "mouse_over";
show springfield_info;
show weapon_propertiestext;
}
}
execKey "5" { play "mouse_click"; scriptMenuResponse "springfield_mp"; close weapon_american }

itemDef
{
name "button_nagantsniper"
visible 1
rect WEAPON_BUTTON_RECT_FOURTH
origin ORIGIN_MENUWINDOW
forecolor 1 1 1 1
type ITEM_TYPE_BUTTON
text "@GMI_MPMENU_4_SCOPED_MOSINNAGANT"
textfont UI_FONT_NORMAL
textscale .24
textalignx 8
textaligny 16
cvartest "ui_allow_nagantsniper"
hideCvar { "0" }
action
{
play "mouse_click";
scriptMenuResponse "mosin_nagant_sniper_mp";
close weapon_russian;
}
onFocus
{
hide nagant_info;
hide kar98k_info;
hide enfield_info;
hide kar98ksniper_info;
hide springfield_info;
play "mouse_over";
show nagantsniper_info;
show weapon_propertiestext;
}
}
execKey "6" { play "mouse_click"; scriptMenuResponse "mosin_nagant_sniper_mp"; close weapon_russian }

// WEAPON IMAGES
itemDef
{
name "nagant_info"
visible 0
rect 0 0 224 112
origin ORIGIN_WEAPONIMAGE
style WINDOW_STYLE_SHADER
background "ui_mp/assets/hud@nagant.tga"
decoration
}
itemDef
{
name "kar98k_info"
visible 0
rect 0 0 224 112
origin ORIGIN_WEAPONIMAGE
style WINDOW_STYLE_SHADER
background "ui_mp/assets/hud@kar98.tga"
decoration
}
itemDef
{
name "enfield_info"
visible 0
rect 0 -2 224 112
origin ORIGIN_WEAPONIMAGE
style WINDOW_STYLE_SHADER
background "ui_mp/assets/hud@enfield.tga"
decoration
}
itenDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 224 112
origin ORIGIN_WEAPONIMAGE
style WINDOW_STYLE_SHADER
background "ui_mp/assets/hud@kar98scoped.tga"
decoration
}
itemDef
{
name "springfield_info"
visible 0
rect 0 4 224 112
origin ORIGIN_WEAPONIMAGE
style WINDOW_STYLE_SHADER
background "ui_mp/assets/hud@springfield.tga"
decoration
}
itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 224 112
origin ORIGIN_WEAPONIMAGE
style WINDOW_STYLE_SHADER
background "ui_mp/assets/hud@nagantscoped.tga"
decoration
}

// WEAPON DESCRIPTIONS
itemDef
{
name "kar98k_info"
visible 0
rect 0 0 224 64
origin ORIGIN_WEAPONTEXT
forecolor 1 1 1 1
autowrapped
text "@MPMENU_THE_KAR98K_IS_THE_STANDARD"
textfont UI_FONT_NORMAL
textscale .24
decoration
}
itemDef
{
name "enfield_info"
visible 0
rect 0 0 224 64
origin ORIGIN_WEAPONTEXT
forecolor 1 1 1 1
autowrapped
text "@MPMENU_THE_LEEENFIELD_RIFLE"
textfont UI_FONT_NORMAL
textscale .24
decoration
}
itemDef
{
name "nagant_info"
visible 0
rect 0 0 224 64
origin ORIGIN_WEAPONTEXT
forecolor 1 1 1 1
autowrapped
text "@MPMENU_THE_MOSINNAGANT_IS_A"
textfont UI_FONT_NORMAL
textscale .24
decoration
}
itenDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 224 64
origin ORIGIN_WEAPONTEXT
forecolor 1 1 1 1
autowrapped
text "@MPMENU_THIS_KAR98K_VARIANT_USES"
textfont UI_FONT_NORMAL
textscale .24
decoration
}
itemDef
{
name "springfield_info"
visible 0
rect 0 0 224 64
origin ORIGIN_WEAPONTEXT
forecolor 1 1 1 1
autowrapped
text "@MPMENU_THIS_IS_A_SNIPER_RIFLE"
textfont UI_FONT_NORMAL
textscale .24
decoration
}
itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 224 64
origin ORIGIN_WEAPONTEXT
forecolor 1 1 1 1
autowrapped
text "@MPMENU_THE_SCOPED_MOSINNAGANT"
textfont UI_FONT_NORMAL
textscale .24
decoration
}

// WEAPON PROPERTIES
itemDef
{
name "weapon_propertiestext"
visible 0
origin ORIGIN_WEAPONPROPERTIESTEXT
forecolor 1 1 1 1
autowrapped
text "@MPMENU_ACCURACY_DAMAGE_MOBILITY"
textfont UI_FONT_NORMAL
textscale .24
decoration
}

itemDef
{
name "kar98k_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "kar98k_info"
visible 0
rect 0 0 90 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "kar98k_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "kar98k_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "kar98k_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "kar98k_info"
visible 0
rect 0 0 114 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "enfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "enfield_info"
visible 0
rect 0 0 90 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "enfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "enfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "enfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "enfield_info"
visible 0
rect 0 0 114 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "nagant_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "nagant_info"
visible 0
rect 0 0 104 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "nagant_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "nagant_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "nagant_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "nagant_info"
visible 0
rect 0 0 114 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itenDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 72 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "springfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "springfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "springfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "springfield_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONDAMAGE
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}
itemDef
{
name "nagantsniper_info"
visible 0
rect 0 0 72 10
origin ORIGIN_WEAPONMOBILITY
backcolor 1 1 1 1
style WINDOW_STYLE_FILLED
decoration
}

}
}
s4ntiago
General Member
Since: Dec 17, 2006
Posts: 104
Last: Aug 14, 2008
[view latest posts]
Level 4
Category: CoDUO Level Design
Posted: Wednesday, Jul. 23, 2008 12:58 pm
that looks right for the most part, but i didnt' check every bracket and stuff.

but if you look at the old mod, you will see other files that are included in the mod besides the scriptmenus. there should be a file called _teams like general was saying.

/maps/mp/gametypes/_teams.gsc (i think)

scroll through that file till you find this part. sorry i dont have a clean file. i'm working on my sisters computer with a downloaded mod i made.


Code:



if you notice you have to precache all the weapons you want the specified team to be able to use. so you need to add the snipers to the precache list for the americans, russians, british and germans. just copy and paste ones you need.


further down through _teams.gsc you find this part.


Code:



u can see that i added the kar and nagant to the american section. u need to add the weapons (sniper rifles) to each teams section. it should be pretty easy to figure out using the examples i posted.

i think the last thing to change is this part


Code:



u should see the pattern now of what needs to be done. sorry my post waas so messy and fast. i'm at public internet and have limited time.

here is a mod i made you can look through if you need to for ideas or whatever. or you can just add your guns to it if you like. feel free use any part of it. i think general99 taught me how to make that mod. oh and eggbeast too. ;)

http://revolutionboy.com/cod/xm-mod/zz_xm_riflemod.pk3
Wayne16
General Member
Since: Apr 30, 2005
Posts: 109
Last: Aug 5, 2008
[view latest posts]
Level 4
Category: CoDUO Level Design
Posted: Wednesday, Jul. 23, 2008 02:58 pm
Thanks s4ntiago for the help, ill have to look into it cause i did what you said to do but i still got the blank menu once i pick a team....so ill have to look more..
general99
General Member
Since: Oct 31, 2004
Posts: 251
Last: Aug 13, 2008
[view latest posts]
Level 5
Category: CoDUO Level Design
Posted: Wednesday, Jul. 23, 2008 09:25 pm
itenDef
{
name "kar98ksniper_info"
visible 0
rect 0 0 128 10
origin ORIGIN_WEAPONACCURACY
backcolor 1 1 1 .125
style WINDOW_STYLE_FILLED
decoration
}

Fix misspelling first line itemdef not itendef - you have it at least 3 times.

You may find weapon firing sound not working on some maps - nagant sniper on "Arnhem" for instance. Various csv files will need to be edited also.

edited on Jul. 23, 2008 09:27 pm by general99

edited on Jul. 23, 2008 09:29 pm by general99
Wayne16
General Member
Since: Apr 30, 2005
Posts: 109
Last: Aug 5, 2008
[view latest posts]
Level 4
Category: CoDUO Level Design
Posted: Thursday, Jul. 24, 2008 12:31 am
Well i finally got the snipers added.....but now for some reason when you go to select a gun the menu dosent just dissapear like normal....why would that be??
general99
General Member
Since: Oct 31, 2004
Posts: 251
Last: Aug 13, 2008
[view latest posts]
Level 5
Category: CoDUO Level Design
Posted: Thursday, Jul. 24, 2008 12:40 am
Menu for all teams doing this? Or just Allies? Or just particular allies?

Have you done the precaching etc in _teams.gsc?

Is it all weapons or just the ones you added?

I just spotted another error in the code you posted above. You are obviously working with the German menu, yet you have this line.

execKey "5" { play "mouse_click"; scriptMenuResponse "springfield_mp"; close weapon_american }

Change weapon_american to weapon_german. And again in the execkey "6" statement.

Interestingly, the stock BEL weapon_britishgerman and weapon_russiangerman menu's also do this, for the same reason - they try to close the wrong menu!

Oh, if you play BEL, you'll need to alter those three BEL menu's as well.

edited on Jul. 24, 2008 12:48 am by general99
Wayne16
General Member
Since: Apr 30, 2005
Posts: 109
Last: Aug 5, 2008
[view latest posts]
Level 4
Category: CoDUO Level Design
Posted: Thursday, Jul. 24, 2008 12:53 am
also i get the 4 guns i want to show up with the info and everything, but when i go to select the Russian rifle....i spawn and can select my pistol grenade and smoke the the gun isn't there....??? where could i have messed that up at?

Its for all teams brits, Americans, Germans and Russians.....this happens with them all....

edited on Jul. 24, 2008 12:56 am by Wayne16
Wayne16
General Member
Since: Apr 30, 2005
Posts: 109
Last: Aug 5, 2008
[view latest posts]
Level 4
Category: CoDUO Level Design
Posted: Thursday, Jul. 24, 2008 12:57 am
This is the new code im working with...This is just the german one...


Code:



And this is just a small area of my _teams.gsc file.....


Code:


edited on Jul. 24, 2008 01:00 am by Wayne16
Restricted Access Restricted Access
Page
Next Page
subscribe
MODSonline.com Forums : Call of Duty : CoDUO Level Design
All logos and trademarks and information in this site are property of MODSonline LLC © 2008.
The comments are property of their posters.
RSS news feeds for MODSonline can be found News.php.
Art of War Central
Partners
The Firing Box
XoXide
Battle for Europe COD2
Call of Duty Headquarters
modbase.be
Frag Universe
Ask About
Advertising
Friends
Canada Kicks Ass Clan
Great Gamer
CoD 4 Base
Ask About
Advertising
Link to Us
MODSonair
View in iTunes
Please help us to raise in the ranks of podcasting and subscribe to our itunes feed using the link above.
MODSonair Releases
MODSonair Episode 143
MODSonair Episode 142
MODSonair Episode 141
MODSonair Episode 140
MODSonair Episode 139
Next Show
The next MODSonair show will air LIVE on:
09/07/2008 11:00 EDT

Time remaining:
Copyright © 2008 MODSonline
Tresware Content Management System Copyright © 2008 Tresware
Website Designed and Hosted   Tresware