project reality header
Go Back   Project Reality Forums > PR:BF2 Mod Forums > PR:BF2 Community Modding
PR Time:
Register Forum RulesDeveloper Blogs Project Reality Members List Search Today's Posts Mark Forums Read
PR:BF2 Community Modding Making or wanting help making your own asset? Check in here

Contact Support Team Frequently Asked Questions Register today!

Reply
 
LinkBack Thread Tools Display Modes
Old 04-27-2009, 09:42 PM   #1
DeltaFart

DeltaFart's Avatar
Default [?] Setting Up a Training Map?

Basically what the title says. Im making this training style map for the Combined Arms mod, but hte biggest issue I'm having right now isn't setting the objects in the right place, it's the whole setting up the training game type. Either I have to set up the map so its in the right positionf ro a testing style map, or I have to set up the coding for that and I haven't a clue how it works


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.

Biggest time killer :P

To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
DeltaFart is offline Reply With Quote
Old 04-27-2009, 09:50 PM   #2
Wilkinson
PR Server License Administrator

Wilkinson's Avatar
Send a message via AIM to Wilkinson
Default Re: Setting Up a Training Map

Alright Delta Let me see if I Get this.

You made a Training map, and it doesn't work in training Right?

It's definetly a coding Issue.

You need to set up your .desc file in the folder to state you want it to show up in training

look at kashan's .desc
Code:
<map gsid="5055">
	<name> Kashan Desert </name>
	<briefing locid="MAPDESCRIPTION_kashan_desert">map description for modders maps not localized (english only)</briefing>
	<music> common/sound/menu/music/PirateX-Desert_Heat.ogg </music>
	<modes>
		<mode type="gpm_cq">
			<maptype players="16" type="headon" locid="GAMEMODE_DESCRIPTION_aasinfantry">Unlocalized test for this mode on this map</maptype>
			<maptype players="32" type="headon" locid="GAMEMODE_DESCRIPTION_aasalternative">Unlocalized test for this mode on this map</maptype>
			<maptype players="64" type="headon" locid="GAMEMODE_DESCRIPTION_aasfullassets">Unlocalized test for this mode on this map</maptype>
		</mode>
		<mode type="gpm_skirmish">
			<maptype players="16" type="skirmish" locid="GAMEMODE_DESCRIPTION_skirmish">Unlocalized test for this mode on this map</maptype>
		</mode>
		<mode type="gpm_training">
			<maptype players="64" type="training" locid="GAMEMODE_DESCRIPTION_training">Unlocalized test for this mode on this map</maptype>
		</mode>
		<mode type="gpm_cnc">
			<maptype players="16" type="cnc" locid="GAMEMODE_DESCRIPTION_cnc">Unlocalized test for this mode on this map</maptype>
			<maptype players="64" type="cnc" locid="GAMEMODE_DESCRIPTION_cnc">Unlocalized test for this mode on this map</maptype>
		</mode>
	</modes>
</map>
It states it is training. Basically copy and paste what is in Bold or just look as Kashan's .desc file.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
Wilkinson is offline Reply With Quote
Old 04-27-2009, 09:57 PM   #3
DeltaFart

DeltaFart's Avatar
Default Re: Setting Up a Training Map

Thanks
Pretty much I wanted to take your Desert Rats map(which is in Combined Arms) and turn it into a training map for us to test stuff with, and CAS asked me to make it in a specific lay out wiht the traing mode.
Should be fun having tons of tanks rolling through the desert


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.

Biggest time killer :P

To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
DeltaFart is offline Reply With Quote
Old 04-27-2009, 11:01 PM   #4
Wilkinson
PR Server License Administrator

Wilkinson's Avatar
Send a message via AIM to Wilkinson
Default Re: Setting Up a Training Map

Right. Yeah CAS did some intresting work with PR_CA. so far it looks Amazing. i love 8km concept


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
Wilkinson is offline Reply With Quote
Old 04-28-2009, 03:48 PM   #5
DeltaFart

DeltaFart's Avatar
Default Re: Setting Up a Training Map

One last question, how do I set up the object spawners for Training? Or does the script telling it that it's running in training handle that?


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.

Biggest time killer :P

To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
DeltaFart is offline Reply With Quote
Old 04-28-2009, 04:00 PM   #6
Wilkinson
PR Server License Administrator

Wilkinson's Avatar
Send a message via AIM to Wilkinson
Default Re: Setting Up a Training Map

Set Spawn times to 60 Seconds. Uhh look at this string.
Code:
ObjectTemplate.create ObjectSpawner Helicopter_Training_southeli
ObjectTemplate.activeSafe ObjectSpawner Helicopter_Training_southeli
ObjectTemplate.modifiedByUser "fuzzhead"
ObjectTemplate.isNotSaveable 1
ObjectTemplate.hasMobilePhysics 0
ObjectTemplate.setObjectTemplate 2 she_ec635
ObjectTemplate.minSpawnDelay 60
ObjectTemplate.TimeToLive 12000
ObjectTemplate.Distance 100
ObjectTemplate.maxNrOfObjectSpawned 2
ObjectTemplate.team 2
ObjectTemplate.teamOnVehicle 1
keep 2 max number of object spawn.
short spawn time (in seconds)
and team lock the vehicles


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
Wilkinson is offline Reply With Quote
Old 04-28-2009, 04:20 PM   #7
DeltaFart

DeltaFart's Avatar
Default Re: Setting Up a Training Map

Ok thanks
Issue here right now. CAS asked me to put T55s and 62s into the center of the Armor range for playing around, but the big issue is when I right click then hit create object spawner, I just get this blank window. WHats going on here?
Ok fixed the map thing nvm


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.

Biggest time killer :P

To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
DeltaFart is offline
Last edited by DeltaFart; 04-28-2009 at 06:38 PM..
Reply With Quote
Old 04-28-2009, 07:58 PM   #8
DeltaFart

DeltaFart's Avatar
Default Re: Setting Up a Training Map

Ok for some reason the boundary has shifted. I don't remember doing anything to it but it does this now

You can see the boundary incurring into the US base. Now I need to know what I have to do to make it not do that. Biggest issue is the fact that I cna't see the boundary in BFE which is wierd i think


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.

Biggest time killer :P

To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 1 or greater. You currently have 0 posts.
DeltaFart is offline Reply With Quote
Reply


Tags
map, setting, training
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 08:46 PM.


Powered by: vBulletin. ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO.
All Content Copyright ©2004 - 2012, Project Reality.