MODSonline Subscriptions
View in iTunes
Please help us to raise in the ranks of podcasting and subscribe to our itunes feed using the link above.
The next MODSonair show will air LIVE on:
03/21/2010 12:03 EDT

Time remaining:
We Dontated to PixelEquity
"Mods can significantly outshine and/or continue the success of the original game even when it is dated." 1
 
Site News   |   Aggregated News   |   Forums   |   Tutorials   |   Downloads   |   Projects   |   Weblinks
Latest Forum Threads 
CoD2 MP Mapping.. Posts: (3) Views: (8) by DemonSeed
CoD4 MP Mapping.. Posts: (21) Views: (464) by Darfyddi
CoD4 Scripting.. Posts: (5) Views: (89) by playername
CoD2 MP Mapping.. Posts: (2) Views: (16) by IvanFilip
CoD2 MP Mapping.. Posts: (5) Views: (35) by DemonSeed
News Around the .. Posts: (14) Views: (111) by vT-Ownage
CoD4 MP Mapping.. Posts: (1) Views: (30) by Infern4ll
CoD4 Map + Mod R.. Posts: (25) Views: (196) by voidsource
CoD4 Scripting.. Posts: (2) Views: (45) by DemonSeed
Back to Home Page
MODSCON 2010 L4D2 Contest
Dr. Nano Free for the iPhone and iPod Touch
Frequently Asked Questions
Call of Duty 2 FAQs
 
Can I map using radiant if I have Windows Vista?

Most mapping editors rely on a 3D directive called opengl. Vista utilizes DirectX 10 instead of opengl and this can often cause problems. However, Vista and video card manufacturers have enabled means of compatibility with one another and in most cases can assist in getting your mapping editor to work with the OS.

Although it doesn't always work, a recommended method that may help if you cannot get Vista and your editor to work well is the following suggestion. Run your mapping editor and related programs as an administrator in Vista. This is done by right clicking on the start icon. Then select "Run as Administrator". Radiant, compile, single player games and multi-player games all need to be started this way. This may help you to continue your work in this environment.

ERROR:
Fastfile 1 of 2, "mp_building": [ver. 5] process...
ERROR: Could not open 'maps/mp/mp_building.gsc'
amishthunder writes: Just tweak the mp_test.gsc to your map and save as mp_building.gsc
In case it is not there, here is what it contains...
Code:
main()
{
//maps\mp\mp_backlot_fx::main();
//maps\createart\mp_backlot_art::main();
maps\mp\_load::main();

//maps\mp\_compass::setupMiniMap("compass_map_mp_backlot");

setExpFog(500, 2200, 0.81, 0.75, 0.63, 0);
//VisionSetNaked( "mp_backlot" );
ambientPlay("ambient_backlot_ext");

game["allies"] = "marines";
game["axis"] = "opfor";
game["attackers"] = "axis";
game["defenders"] = "allies";
game["allies_soldiertype"] = "desert";
game["axis_soldiertype"] = "desert";

setdvar( "r_specularcolorscale", "1" );

setdvar("r_glowbloomintensity0","1");
setdvar("r_glowbloomintensity1","1");
setdvar("r_glowskybleedintensity0",".3");
setdvar("compassmaxrange","1800");


}