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
"Modding refers to the act of modifying a piece of hardware or software or anything else for that matter, to perform a function not originally conceived or intended by the designer." 4
 
Site News   |   Aggregated News   |   Forums   |   Tutorials   |   Downloads   |   Projects   |   Weblinks
Latest Forum Threads 
CoD4 SP Mapping.. Posts: (3) Views: (17) by infinet
CoD4 Scripting.. Posts: (1) Views: (12) by j4cken
General Gaming.. Posts: (7) Views: (139) by Rasta
CoD4 MP Mapping.. Posts: (4) Views: (67) by Infern4ll
CoD4 Scripting.. Posts: (9) Views: (255) by DemonSeed
CoD2 MP Mapping.. Posts: (12) Views: (97) by StrYdeR
CoDUO Mapping.. Posts: (5) Views: (74) by sternkaa
MODSon-air.. Posts: (1) Views: (23) by foyleman
Back to Home Page
MODSCON 2010 L4D2 Contest
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");


}