![]() |
Online / multiplayer missions go here
2 Attachment(s)
EDIT 10.09.11: Most of new great MP missions are posted in the FMB section now http://forum.1cpublishing.eu/forumdisplay.php?f=203
-------------------------------------- Please share online missions you create and/or host here to let other servers run them if you want helping CoD online community to develop quicker. To start with please find attached 2 missions based on excellent BoB mission by Doghouse v1.5. I moved red airfields to France for some instant action. 128Francev1_6.zip is a version with 6 ground airfields and many sea and ground targets. 128France_lite1_6a.zip is a lite version of the same map with reduced number of airfields, targets and AA for better stability. At more distant airfields spawns are not set to hangars, please let me know if it works. Tiger Moths set to start in the air just for sightseeing purposes. |
mission v1.6
1 Attachment(s)
Good idea. Sticky would be good.
Mission based for 128+ player's. English channel. Version 1.6 Each side consists of three fighter airfields, one bomber airfield (with escort/interceptor airfield next to it) Some bomber objectives include ship convoy's, fuel depot, and a tank factory. Each side will have a recurring AI squadron spawn at different times. Either Wellington's or HE111, which will fly to an enemy fighter airfield, and bomb it! A short message will flash on the screen to notify all player's of event starting. Player controlled planes get removed if player leaves, respawn's. That is AI takes control, the plane will no longer exist. Damaged planes at spawnable airfield's will also be removed. I think that's the important info. Enjoy. |
Quote:
|
yup. place an AI object and use airfield.cpp, you can give it a radius effect too.
|
doghouse i just loaded your map (nice job :)) and spawned in one plane and then spawned another one and first one was gone :):) I tried doing the same to one of my maps by adding the script below after hiting save in FMD it generated a .cs file of the same map name ...but the destroying of empty plyer planes did not work :( can you tell me what i did wrong? thnx
Quote:
|
With that mission, I take it the sub-mission didn't load.
The issue is with void OnTickGame(). You used back-slash instead of forward-slash. The syntax error would in this instance prevented the rest of the script to run. So with the changes below, it will work. using System; using maddox.game; using maddox.game.world; using System.Collections.Generic; public class Mission : AMission { public override void OnTickGame() { if (Time.tickCounter() % 1200 == 0) { GamePlay.gpPostMissionLoad("missions/Multi/Dogfigh t/basic40c.mis"); } } public override void OnPlaceLeave(Player player, AiActor actor, int placeIndex) { base.OnPlaceLeave(player, actor, placeIndex); Timeout(1, () => { AiAircraft CurAircraft = player.Place() as AiAircraft; AiAircraft PrevAircraft = actor as AiAircraft; if (CurAircraft != PrevAircraft) { (actor as AiAircraft).Destroy(); } }); } } |
Guys,
where do you get all this info from, settings, scripting (and should it be necessary?) etc Anyway, anything I can find to help me build missions would be good. A community self-help manual Sticky?? |
Quote:
Manual from developers is not ready yet. You can start now with learning some C# basics I think. http://msdn.microsoft.com/en-us/vcsharp/dd919145.aspx http://msdn.microsoft.com/en-us/vcsharp/aa336766 |
Quote:
Ataros I truly appreciate the reply but I don't intend to learn C# to create missions. That link you sent me scared the a$$ off me! I may have many years of VB behind me but I wouldn't expect to use even that to create missions. I suppose I was curious to know just how you fell over those files and know what to do with them, like perhaps I had missed a manual, but what I was really looking for was clues on how to use the much changed FMB graphical interface and where are the facilities you are programmimg in but you seem to have found some extra tweaks outside FMB and we could use them in it. If the devs expect us to start using C# programming I think there'll be a lynching party. Good luck to you though :) If I have a change of heart and the time I'll look again at that link. Thanks again. |
thnx doghouse :)
|
Quote:
I think you are acquainted with FMB but for those who is not this is a link to start http://www.il2-fullmissionbuilder.com/index.php |
1 Attachment(s)
Attached is a Battle of France mission with scheduled shipping convoys (basic ones) and bombing runs.
Red airfields are located in France for quick action. Script included in the mission loads 3 sub-missions into the main mission. Put the whole 128BoF folder into your \missions\Multi\Dogfight directory. Run 128BoFv1_6.mis Sometimes aircrafts explode on spawn. Please let me know how to fix it if you have this information. You may try the mission on Repka server tonight and tomorrow hopefully. Feel free to use and modify. |
Quote:
|
Quote:
Do you think unchecking "parking spawn' would solve the issue? I am afraid that without parking spawn ppl would collide when spawn on the runway. |
Quote:
We get aircraft exploding on Spawn if we place them as Aircraft instead of simple Spawn Places because no matter where you place the Aircraft they all spawn at the same spot on top of eachother. We have to spawn one at a time and taxi off the spawn point |
ATTN: Dog house & Ataros
Hey guys
After reading a couple of comments about current online maps for both SYN and Leadfarmer... i have began making my own BOB map... So far i have created some ships in the middle (everyone loves ships lol), but i have been sneaking by adding 4 AA guns onto random ships :D... Works a treat I just need some advice on reoccuring flight groups ... Shall hopefully crack on with the map tomo! Cheers Ross |
Quote:
Cheers |
Quote:
Another issue I have is creating several tankers as one group with same waypoints. Did you manage to do so? In my mission you would see a 'convoy' consisting of 1 tanker only unfortunately. (but reoccurring every 40-45 minutes) Quote:
|
secret :P
Nah you can have a look at what ive done once ive finished the map...
I might be cheeky and ask someone to do the scripting for us coughdoghouse?cough I wish they had more "black & white" support for all this... Cheers |
almost there...
Quote:
And can someone explain the tick counter and how to "work it" Cheers |
Quote:
30 tics a second give you 1800 tics per minute. if (Time.tickCounter() % 1200 == 0) 1200 - is cycle here 0 - is initial delay before running script. I'd suggest taking doghous3 script to start with and just change filenames in it to avoid simple mistakes. This is what I did with his mission. |
1 Attachment(s)
Quote:
I double checked mine and doghouse's map.... neither planes load... the message pops up but thats it... i load on the game console and it mentions "load failed"... Any reason behind this :S? Steam and VAC? :S See attached picture Cycle here - ? whats that lol update Is this the part where it "reloads" itself? or "deletes" itself?? Cheers DOH - HANG ON A SEC LOL never laughed at myself so much... copy and paste - bad idea... forgot my sub folder in the line... all my own missions are saved in "Ross" folder... talk about wasting a few hours :D - ALL FIXED NOW :D :D :D Still need an answer on the cycle though! |
Quote:
Quote:
|
1 Attachment(s)
New version of "Battle of France"
Added guns to tankers. Spawns assigned to runways on some airfields. etc. |
Thanks
Cheers for all your help, hopefully have a map to show soon!
|
Quote:
|
Delete AI after mission?
Ack next question
Any script or trigger to remove AI after mission? or should i just get them to RTB then "vanish"... Cheers |
This is what I've made
1 Attachment(s)
Ok people
This is what i have made so far... 3 sub missions (b1 4xhe115 attack convoy, b2 8x he111 attack base, r1 12xblenheim attack base) So many things can be changed/ done differently after learning a few things about script... However, please feel free to have a look and make comments (bad or good!) All i really want to know now is: a) can you end the sub missions before the script starts the new one b) bring back destory "static" objects after "x" amount of time? Cheers Ross Note - If you are going to use my game maps, make sure you change the script directory for each sub mission!!! in "OnlineBoB" - Hope you understand!!! |
Quote:
I think a good idea would be to disable AI controls or kill engine with a script in 30 minutes after the last waypoint and destroy it 10 minutes later. We need such a script badly. Hope someone with C# knowledge can write it for us. |
My mission update
1 Attachment(s)
Update for my online map
not sure if the script for disabling ai controls works though :S Ross Code:
using System; |
1 Attachment(s)
A lite version of Battle of France. No scripts, only triggers.
Hangar explosion problem solved by adding new "aerodrome" objects on top of default ones and placing spawn points closer to the center of new ones. Do not move them if you edit the mission. Ground units spawn does not work yet. Feel free to use and modify but please share the missions that you create with community. If you know C# please join discussion here http://forum.1cpublishing.eu/showthread.php?t=21518 |
Airbase Attack
Two sets of Airbase Attack missions (old Jane's ATF concept), one set early in the morning and one late evening.
Spawn a bomber or fighter at home base to destroy the 3 enemy hangars, defend base or escort bombers. Airbase Attack Mission Pack http://odenhouse.servegame.com/aba.jpg Airbase Attack Dieppe
Airbase Attack Harwell
AI will spawn for CAP and bombing missions so mission should be playable solo, coop or TvT. Host passworded server to play solo or go public with an open server. Feel free to edit/crush/jump/delete/copypaste any file in pack. |
Ataros any chance of getting your latest mission.. 1.7, i trying to get my head around the scripting options.
Getting there due to your help. |
1 Attachment(s)
Quote:
Feel free to modify the mission, however if you decide to use it on any server please remove at least 3 out of 5 sub-missions and include your own submissions instead. We would like to have this particular unique mission running on Repka server only till we have the next version. Thanks for understanding ) Known issues: Blenheims do not manage to sink ships in this one. Did not figure out detonator/alt settings for them yet. |
Thanks a lot mate!! The included script really helps.. i believe i understand the key components now.. time to get mission building.
Your help has been invaluable. :grin: |
from a rookie in scripting and Visual C or whatever:to all FMB ers and to mcler002 in particular (his BoB mission worked for me):is there a way to post a simple (if possible) tutorial on how to make a proper COOP (only one mission) with humans and AI's. Think the community would appreciate (well i would:cool:)
Thanks in advance |
1 Attachment(s)
With lots of help from the scripters on this forum I have made my first scripted mission.
It uses a trigger at startup to load one of 9 submissions. It also uses a timer to load sub missions later in the mission. Works fine for me. Thanks again for all the scripting examples. GH |
1 Attachment(s)
Updated the mission to 2 player CooP/Dogfight.
Place folder in Multi/Dogfight Select main file to start. Fly as Blue [2 Emils at Caffiers] Now loads a random sub mission at startup and a random sub mission roughly evey 5 mins. 9 sub missions in pool. GH |
Quote:
Thanks for sharing! |
Glad to help!
GH |
Current version of script from Repka server. Works like magic )
Feel free to use. Code:
// v.1_17_04. script by oreva, zaltys, small_bee |
Quote:
http://forum.1cpublishing.eu/showpos...&postcount=109 and here http://forum.1cpublishing.eu/showpos...&postcount=111 Could you have a look please. UPD. fixed. Why do you need the first part in your script with a trigger? Did you check if it works without the first part? May it be the case that the 1st part is working but the 2nd does not as I included only the 2nd part in my script? |
Hallo Ataros,
I do not know if it is too much asking, can you post the missions you have running on the REPKA Server #(I do not know the number) the one with English Channel and the many objects moving around. I could not find the server yesterday and I would ike to play around with my GPU settings (I only get 30fps with this gameset while the other REPKA English chanel map gives me 85fps and the islands map 110 with grass, shadows, roads off)... ~S~ |
1 Attachment(s)
Hi GRAthos!
Please find Repka #1 mission attached. Repka #2 runs a mission by cFobos and I do not have it on my PC. |
Many Thanks !
:) ~S~ |
On Repka 2 is there any chance you can add the 110C4? I understand not having the C7 because it almost give an unfair balance in ground attack to blue. I cannot in good conscious fly on a server that does not have the 110C4 available though. :(
Thanks. |
rgr, asked BigRepa
|
Quote:
Ataros we are running this mission on our server (128BoFv1_6.mis). What is the suggested time frame to rotate maps? Thanks |
Where are the mission files stored once you build them. How do you get rid of them and how do you make them work? How come I can't select a plane in a coop mission like I could in IL-2? My dogfight mission bases don't show up at all. I sure liked Simple Simon IL-2. This thing is great but mission building...playing has me stumped :(
|
3 Attachment(s)
I just did get a coop to work and for some reason the missions are in the folder now. They weren't in there before the patch...weird. Now I'll see if I can make a Dogfight mission work. It's got to be something stupid that I'm not doing...me being the stupid part of it.
I've got to say sitting back and letting that mission play and listening to those 109s and Spitfires roar up and down this river on the new mid size map witch I like was a blast. The sound is fantastic :) |
COOP still dont work for the client! Only the host can fly the mission it seems! Or we are missing something!
|
how are you guys getting i
Quote:
|
You should create a mission with some planes located at airfields.
When you join server you should chose side and click one of these airfield. When you click the airfield a list of aircrafts and crue positions appears on the right hand. You click the position to occupy it and then click fly or create. Which part does not work exactly? Let me know and I will report the bug. I can use this new coop-style selection menu even on Repka server but have to create an extra aircraft first and then hit ESC to get to the list of available aircrafts and crue positions. Have to do it because Repka mission has spawnpoints placed on airfields. If you do not place spawnpoints you do not have to create aircraft first and hit ESC. |
Quote:
Can fly the "pseudo" coop missions on various servers (which is fun, and appreciated), but still not "IL2-style" coop in which a singleplayer-type mission is created, with the goal of humans vs AI, or humans vs humans, or a mix. The host can fly the mission, but the clients cannot join. Numerous aircraft on the ground and in the air.... clients cannot see them, no list, nothing. I am very experienced at mission editing in IL2, very inexperienced in COD, so it is very likely I am still missing something (I've been trying for months to get this working for our small group of pilots).... but what I've seen online so far "appears" to be "dogfight-type" maps / missions that have been "scripted" to become coop missions.... is this correct? Thanks. |
Quote:
|
Quote:
In the online servers (Hyperlobby is the one our group flew in yesterday) we were able to see plane lists. We may be talking about an entirely different "concept" regarding coop. More like traditional coop in IL2. Example: 1.) Create a single player mission. No spawn points, no scripting... just a mission with a Spitfire flight taking off from an airbase, or inflight. 2.) Make an opposing flight of German fighters, bombers, whatever. 3.) Test offline to make sure you have the timing, weather, everything to your liking. 4.) This mission will work great offline. 4.) Now try to use this as a coop mission online. What we see when we try this is that the host will be able to fly the mission normally. The clients can connect with the host, but cannot find any planes.... I guess a simple question is this: Can a COD campaign mission be flown online as a coop mission, without scripting? Can the host and clients enter their planes, on the airfield, takeoff in formation; or enter their planes in flight, in formation? In IL2 the answer would be yes; so far in COD it seems to be no. Are we missing something here? Thanks. |
What Ataros is saying is that as long as an aircraft is available, you can spawn into it in a specific position from a list/menu (the menu was added in the latest beta patch).
a) If the mission uses spawn points (a la DF mode), then a player first has to spawn the aircraft and then other players can spawn into it. b) If the mission doesn't use spawn points (a la coop mode), then an aircraft must be sitting on the tarmac, placed there via the FMB, for players to spawn into (much like selecting from the list just like it was in IL2). However, you first need to click on the airfield where your aircraft are located. So it should be select airfield-->select aircraft and position from the list-->fly. At least that's how i understand it. If it is indeed that way, then the only change from old IL2 to CoD is that you need to select an airfield first, the rest works as usual. |
I will defer to Leadturn...he is our mission builder for WWII Sims
Thanks for your Help Ataros |
If you are referring to each Client clicking on the Airbase, it is not available to them. It is grayed out.
Cirrus_SD |
Quote:
Hi Blackdog_kt (and again, hi Ataros), Thanks, but what we are seeing both pre-beta patch and with the new patch is as described. With a "classic" type coop, written as it would be in IL2, the clients cannot join. Clicking on airfields by the clients has no effect. No list appears. They can join, just as described by Ataros, on servers that appear to be running "scripted" missions... my apologies if I have this confused, but it really appears that the missions on these servers are "dogfight-style" mission (in the way dogfight servers ran for IL2) that have been modified or tweaked via scripting to allow a form of coop play. I can see great advantages to this approach: 1. Join "on the fly".... this is a huge advantage. IL2 coops don't allow this. 2. Respawn if killed. 3. The possibility of creating a "persistent" battle server (somewhat like Falcon 4 online campaign servers, where clients could come and go, but the server kept the battle running) But, the disadvantage is that it seems like you cannot fly a "traditional" style mission with your buddies. You can spawn at "spawn points" if an aircraft is available, or into a flying aircraft.... but not into a "mission"... if that makes sense. If you've flown coop in IL2, JF-18, Falcon 4, etc., you'll know what I mean. Can a group of players decide to fly a mission together, all "spawn" into the same flight on the runway or in the air, and then complete the mission, just as if it were a singleplayer campaign mission? When I test the COD missions I've written as the Host, it appears that this can be done, but when we tested it online, we could not get it to work. We are talking about missions with dozens of flyable aircraft, but only the Host can play the mission, clients cannot join. Does IL2-style coop now work? If so, how? We were not able to figure it out. (That would be Cirrus, Megohm and myself, long-time flying buddies). Again, apologies if I am missing something really basic, but it still appears that "traditional" style coop play is not available in COD yet. Thanks!! |
Quote:
To make flags clickable you have to allow side switching in difficulty settings. If you have side switching off you can not click a flag or an airfield. I will try to run one of offline missions online as a coop later this week when I have time. BTW there is no much difference between dogfight and coop any more and scripting is no required to run a simple online mission. |
Quote:
|
Quote:
Both flags are available for the Client to click on but afterwards they do not get a list of planes and are not able to click on the airbase. Thanks for your interest and help, Cirrus |
Quote:
Best wishes. |
Quote:
Report this in bug threads with screenshots please. If you can make screenshots of both host and client at the same time showing the client issue I will repost them at sukhoi.ru forums in online bugs thread http://www.sukhoi.ru/forum/showthrea...t=68697&page=8 upd. Another idea is make sure you do not accidentally check a "Player" checkbox in any aircraft properties. In that case only the host would fly as if it was an offline mission. To quickly check it, try flying the mission offline, if you get into a cockpit then this aircraft's "Player" checkbox is checked. Uncheck it. Again host must press "Battle" to start the battle before others can select planes as far as I understand it. It looks like some people are flying coops successfully already http://forum.1cpublishing.eu/showthread.php?t=26483 |
Quote:
Quote:
Quote:
A temporary workaround is suggested. |
1 Attachment(s)
Repka Steppe mission is attached.
|
All times are GMT. The time now is 12:50 PM. |
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.