WE HAVE MOVED !! Visit the new board HERE

Please make sure to check the new forums on how to activate your account there. Thanks!

























GUNfighters Forums
    > Operation Flashpoint
        > any OFP Activity lately?
New Topic    New Poll    Add Reply

<< Prev Topic | Next Topic >>
Author
Comment
Diabolical1 CC 
Vigilante of the road
(6/21/03 6:33 am)
Reply

any OFP Activity lately?
Did you guys get your Server up yet?

Any games being played?

I am The Diabolical1 CC

CADman GUN
Founder of the GUNfighters!
(6/21/03 11:06)
Reply

well
Not lately, we used to have some team ofp missions going down, was beta testing some stuff, then BF1942 came along..

Me and Jon, Azz have had some ADSL hosted co-op's a few weeks back, need to arrange something maybe.

Suns out..:tup

CADman[GUN]

Jon Factor GUN 
GUNfighter
(6/21/03 14:06)
Reply

Re: well
Get me in the mood (some candles, a bottle of wine) and I can host some up, just need to arrange them :rollin

I've got a mission that needs testing and I think CAD has one or two up his sleeve.

Diabolical1 CC 
Vigilante of the road
(6/23/03 3:08)
Reply

Re: well
I've been playing with the Mission Wizard too. I can make some good Single player missions, but my inept programming skills (ie none) leave me behind when I comes to makeing MP games. I still havn't figured out the Re-spawning thing.

I even followed Cadman's instructions and! ...nothing happens.

So far I have two (three) maps that i am proud of.

a couple single person maps, as Rebels without friends. and one East vs West Bunker based Single or Multi-player optional Game.

Basically I took a couple game made bases and re-enforced them. Added men (defenders) and weapons and with players superior tactics and skill, you get a very good multi-part map. Now if I could only get the Re-spawning thing to work it would be wonderful.

Any cut and paste solutions for the Re-Spawn available yet?

I am The Diabolical1 CC

Diabolical1 CC 
Vigilante of the road
(6/23/03 3:24)
Reply

Re: well
I found something on another site.


Description.ext tutorial
- by Hangfyre

--------------------------------------------------------------------------------
We've all played the maps where you could chose different weapons in the briefing before the mission starts. Well, this is done via the description.ext file.
and here's how you can do it for your custom maps.


EDIT

Thanks to KnYnE for emailing me about an error in the example file. A misplaced ";" sorta screws you :) .
Anyway, i've fixed that bug, plus updated the example file to include the strings for the new weapons released in the Beta 1.29 Patch. These are :
MM1 / 6G30 / Bizon / Steyr / G36a

Please note, this is NOT a comprehensive tutorial on everything you can do with the description.ext file. It covers the basics most people have asked for. More details on the other functions will follow......

A quick word on files first ...
You add the description.ext into the mission folder. The same place as the mission.sqm. This folder is hiding in the /operationflashpoint/users//missions/ folder. You must have saved the map you're working on, so the mission folder is there. Please note, save the mission as a user mission and do not export it. Exporting the mission creates the mission pbo file.

The pbo file is basiclly just the mission folder wrapped up into one file. As such, once you export the mission, you can't edit the files inside the pbo. What i find works best is this.
Open the editor, and get the basics of your custom mission worked out. That is, the location on the island, and place a Player unit. Then save the mission as a user mission and exit the game. Open the /operationflashpoint/users//missions/ folder, and create your description.ext file. It's really just a text file, but i've included a sample description.ext file HEREhere for you to download.

It's really personal preference as to which order you do this. You can edit the description.ext file either before, during or after you put your map together. Or you can be like me and edit it constantly throughout the mission making process :) . The major pain-in-the-ass with the editor is the inability to check the description.ext file during the preview. This means that to check your description.ext is working, you need to export the mission, and play it. This is a problem, as you must exit the game to delete the old pbo file before you can save the mission again. It's a real drawback that the editor does not save over missions :(

end of files stuff :)

What can the description.ext file do for you ??

well, you can set the respawn method and time, add more weapon options at the briefing stage, set whether the watch,radio, or GPS are available during a mission, or even stop the map itself from displaying !

And it's all nice and simple too :)


Respawn Options


Suits has put together a nice little bit of info on respawning, and here it is :-


Modes
NONE - no respawn
BIRD - as seagull (default)
INSTANT - at place you last died
BASE - at your base ( set with markers "Respawn_West", "Respawn_East")
GROUP - into a remaining soldier of your group (assigned group/platoon)
SIDE - into a remaining soldier of your side (east, west)

The respawn modes are set in a description.ext file located with your mission.sqm in a folder. The description.ext is just a text file, so you can make one with notepad. Add it in the same folder as your mission.sqm before exporting to a multiplayer mission. (PBO file)

Here is the text you will need to add to the description.ext.

respawn = "mode"
respawndelay = time

-Change type to one of the respawn modes from the list above. example : respawn = "instant"
-Change time to any number. This sets the time before the player can respawn in seconds. example : respawndelay = 20

To make a BASE respawn you will have to add 2 makers in your mission. One called Respawn_West and the other Respawn_East. Place the markers where you want the players to respawn at.

Note in the earlier releases of the game Group only allowed the commander of the group to spawn into other AI members. Also SIDE respawn had some weird effects as well. I dont know if the have been fixed with the new patch or not.


Many thanks to Suits for that. Saved me writing it :)



In the example description.ext i've listed the various respawn modes again, to make it easier for you :)
As an additional note, you can also use numbers instead of the respawn modes...

1 = None
2= Seagull
3 = Instant
4 = Base
5 = Group
6 = Side


So you can use ....
respawn = X
respawndelay = time
where X is the number.



Map Options


Another easy section. For most of the options here, it's either a yes or no answer.
0 = No
1 = Yes.

really personal preference and map design for what is visible. At a minimum, allow the compass to be seen. Unless you want to be cruel :)

The 2 title options are pretty easy too. Just substitute the text you want the player(s) to see.



Weapon Options


And we come to the main reason for this tutorial :)

This section lets you chose additional weapons and equipment that is available to the player(s). This works for both MP and SP maps.
The basic outline for each weapon looks like this :-


class Weapons
{
class AK74;
{
count = 0
};

To add weapons, just change the "0" to however many you want to add.

It's the same for ammo..


class Magazines
{
class AK74
{
count = 0
};


If you look at the sample file i provided, you should notice that i've separated the different sides weapons. You can mix'n'max happily. That is, you only need one "Class Weapons" section, and one "Class magazines" section.

Also, more importantly, note that at the end of each section there is 2 "};" lnes. This tells the game that the section has ended. As such it's vital that these 2 lines are included.
Also, make sure to place the Magazines section AFTER the weapons section.

Ok then, that about wraps this up. feel free to email me at the address below if you have any questions....


Hangfyre.

That explains why my mission Ext file never worked. I PHOed it all the time.

I am The Diabolical1 CC

RedFive GUN
GUNfighter!
(6/23/03 7:26)
Reply

Re: well

Jon Factor GUN 
GUNfighter
(6/23/03 14:34)
Reply

Re: well
A link would of done, all of this text will bump up the cost of our board. Please try and keep your posts down in future.

;)

Azz GUN 
GUNfighter
(6/28/03 20:39)
Reply

Re: well
We Get Charged on post size now ?

Time to change host i think. ;c)

I have seen missions where you choose your weapons before you respawn using dialogs

The [GUN]fighters

Diabolical1 CC 
Vigilante of the road
(6/30/03 1:43)
Reply

Re: well
I did some checking both Jon and Red are full of Hot mixedup Font!

You don't get charged for Long posts.

You don't get Charged for Frequent Posts.

You get charged for Visits.

Jon pays $30 and freeks out on costs.

Chill out guys (if you are guys?).

Exboard

I am The Diabolical1 CC

RedFive GUN
GUNfighter!
(6/30/03 3:20)
Reply

Re: well
Did it ever occur to you that maybe we just don't like hearing your life story every ten minutes?

Diabolical1 CC 
Vigilante of the road
(6/30/03 8:17)
Reply

Re: well
You keep asking about it and All I'm trying to do is find out if anyone wants to play OFP.

Or i'll looking for help on map/mission making.

I am The Diabolical1 CC

<< Prev Topic | Next Topic >>

Add Reply

Email This To a Friend Email This To a Friend
Topic Control Image Topic Commands
Click to receive email notification of replies Click to receive email notification of replies
Click to stop receiving email notification of replies Click to stop receiving email notification of replies
jump to:

- GUNfighters Forums - Operation Flashpoint - GUNfighters Interstate 82 Multiplayer Team -

Powered By ezboard® Ver. 7.32
Copyright ©1999-2007 ezboard, Inc.