![]() |
|
#1
|
|||
|
|||
![]()
Made a sample mission, the Doniers spawn after 10sec.
|
#2
|
||||
|
||||
![]()
im still not able to spawn a single plane after another one gets destroyed!!!
why the heck has this to be sooo hard to achieve...damn triggers dont seem to work and the scripts showed here in this thread dont seem to work either if i copy and paste them in the mission cs file. Last edited by David198502; 10-15-2011 at 11:13 AM. |
#3
|
||||
|
||||
![]()
thats what i did so far...
|
#4
|
|||
|
|||
![]()
I've tested your mission, the problem is that the trigger is never triggered (testet it with different numbers of planes and plane types), then remove the trigger and made a new one but no effect, may be a bug in the Beta. Normaly your code should work.
So I made a workaroung without trigger. Code:
using System; using System.Collections.Generic; using maddox.game; using maddox.game.world; public class Mission : AMission { public override void OnActorDead(int missionNumber, string shortName, AiActor actor, List<DamagerScore> damages) { base.OnActorDead(missionNumber, shortName, actor, damages); AiAction MakeNewAircraft = GamePlay.gpGetAction("SpawnAircraft"); if (actor != null && MakeNewAircraft != null) { if (actor.Name().Contains("BoB_RAF_F_FatCat_Early.000")) { MakeNewAircraft.Do(); GamePlay.gpHUDLogCenter("New Enemy spawned!"); } } } } The script, a action in your Mission (i labled it "SpawnAircraft"), the name of the plane to destroy. A new Airplane spawns after the previous is shoot down, you can improve it by adding a Planecount, etc. Last edited by FG28_Kodiak; 10-15-2011 at 01:03 PM. |
#5
|
||||
|
||||
![]()
thx Kodiak, really kind of you!and finally this works!
-if i understand it correctly, if i shoot the hurri, another one spawns, and i could repeat that to infinity??? i ask this, cause so far i tried the mission several times, and after i shot down the 4th hurri, no plane will spawn anymore.... i also expierence many game crashes, i think mainly when im near the spawning aera.. -can i just increase the number of the hurris without changing the script?i did and made a flight of six hurris, and after i shot down the 4th, the message "New Enemy spawned!" appeared, but unfortunately my game crashed. -how do i determine the name of the plane??? -whats the planecount you mentioned to improve the mission??? i know i have many questions and im really greatful for your help. |
#6
|
||||
|
||||
![]()
ok tried again and answered some question by myself...its possible to increase the number of the planes...
after i let the hurri spawn further away and let it start on an airfield, the came doesnt crash anymore when spawning. but it seems that after i shot down the first hurri, another spawns as expected, but after a few seconds, another one spawns without obvious reason.... happens everytime.so if i begin with one hurri, after i shot it down, i will have suddenly two enemies. if i increase the the number from the beginning, the same thing seems to happen....but im still not sure when the respawn does take place in that situation....do i have to shoot down the first plane of the flight to trigger a respawn, or do i have to kill all planes of the flight?? |
#7
|
||||
|
||||
![]()
From what I understand so far is that if you set up triggers in the FMB then they are no longer working and you have to use a script to fire them?
I am trying to airspawn a fighter escort when the bomber group pass through their sector, otherwise they all spawn together and the fighters are off into the distance and gone. I have set a trigger for Blue when they enter the fighter area but they are spawning in on map start. I am selecting File>Play mission in order to test. |
#8
|
||||||
|
||||||
![]() Quote:
Quote:
Quote:
actor.Name().Contains("BoB_RAF_F_FatCat_Early") so every plane in the goup counted. Quote:
Quote:
you can improve the script. For example: Code:
using System; using System.Collections.Generic; using maddox.game; using maddox.game.world; public class Mission : AMission { int planecounter = 0; public override void OnActorDead(int missionNumber, string shortName, AiActor actor, List<DamagerScore> damages) { base.OnActorDead(missionNumber, shortName, actor, damages); AiAction MakeNewAircraft = GamePlay.gpGetAction("SpawnAircraft"); if (actor != null && MakeNewAircraft != null) { if (actor.Name().Contains("BoB_RAF_F_FatCat_Early")) { planecounter++; if (planecounter >= 2) { MakeNewAircraft.Do(); GamePlay.gpHUDLogCenter("New Enemy spawned!"); } } } } } Quote:
Last edited by FG28_Kodiak; 10-15-2011 at 02:58 PM. |
#9
|
||||
|
||||
![]()
hey Kodiak!thx again will try that out immediately.....
but yet i have another question:i want to build a mission, where london gets continually bombed....i mean really destroyed, that if one flies over the city, one can see the damage everywhere...for that i used the script called "scripting for dummies" i think where one can create a main mission and 3submissions which will load after a certain time...it works, but now i have the problem that my He's stay on the map, and every ten minutes 30new He's spawn to bomb the city...so after 30minutes the mission grinds my pc to a halt because i have over 100 planes in the air...so i want the He's to dissapear again after they reached a certain waypoint...is that possible???and how?? this is what i have so far... Last edited by David198502; 10-15-2011 at 04:40 PM. |
![]() |
Thread Tools | |
Display Modes | |
|
|