Armed-Assault.de Twitter


Usermade Missions Der Platz für eure selbsterstellten Missionen und Kampagnen für ArmA3

 
 
Themen-Optionen Ansicht
Alt 19.07.2013, 08:32   #281 (permalink)
xqm
Newbie
 
Registriert seit: 17.05.2013
Beiträge: 42
Standard

i think ive solved the helicopters exploding when you get in problem...

it doesn't seem to be domination specific, there's no reason why it should be, but i cannot replicate it in other missions. my freinds tell me searching has found reports of it happening in other missions.

i do know it only happens when you get in as pilot or take controls from the copilot seat.

anyway... if you spawn the helicopters 0.1m in the air, the exploding doesn't happen. in arma3 you can set the elevation in the editor so it's a simple fix. afaict helirespawn2 spawns them safely at 0.1m without further editing.

its insane, i know! the cure is not at all related to the problem but so far, it's working for me. when fixing rv stuff, always think counter intuitivley

Geändert von xqm (19.07.2013 um 08:36 Uhr).
xqm ist offline  
Alt 25.07.2013, 13:34   #282 (permalink)
Newbie
 
Registriert seit: 11.07.2013
Beiträge: 19
Standard

hello ,
many problem's with the new uptdate .
problem in x_server\x_vrespawn2.sqf :if (_empty && {!_disabled} && {_aliveve} && {(_vehicle call FUNC(OutOfBounds))}) then {
_outb = GV(_vehicle,GVAR(OUT_OF_SPACE));


the error is :
Error in expression <UT_OF_SPACE", -1];
piedebeouf ist offline  
Alt 25.07.2013, 14:19   #283 (permalink)
10 Jahre hx3
5000 Beiträge
 
Benutzerbild von Xeno
 
Registriert seit: 03.01.2008
Alter: 84
Beiträge: 6.552
Standard

@piedebeouf
Just guessing again (still no Arma or anything Arma related on my SSD )...

Try to remove non existing vehicle references from the parameter array where v_respawn2 is called (d_init.sqf)

Xeno
Xeno ist offline  
Alt 25.07.2013, 15:20   #284 (permalink)
Newbie
 
Registriert seit: 11.07.2013
Beiträge: 19
Standard

@Xeno
thanks for your answer , problem solved .

Thanks a lot
piedebeouf ist offline  
Alt 25.07.2013, 15:59   #285 (permalink)
Newbie
 
Registriert seit: 11.07.2013
Beiträge: 19
Standard

another error is find :
x_mtmissions\x_getmtmission.sqf, line 42
Error in expression <_JIPH getVariable "d_campscaptured") == d_sum_camps && {("Car" countType _list <>
Error position: <d_sum_camps && {("Car" countType _list <>
Error Undefined variable in expression: d_sum_camps


hum ....Have you an idea ? or someone could help ? thanks for your time and answer
piedebeouf ist offline  
Alt 25.07.2013, 20:55   #286 (permalink)
10 Jahre hx3
5000 Beiträge
 
Benutzerbild von Xeno
 
Registriert seit: 03.01.2008
Alter: 84
Beiträge: 6.552
Standard

If you get a "Undefined variable in expression" error try to define the variable with a default value prior usage.
Afair the variable is used in a trigger and before the "undefined variable check" change one could use undefined variables in trigger conditions which seems to be no longer possible.

So again, define those undefined variables with a default value somewhere (in case of d_sum_camps it should be an integer value, most likely 0, define it before the trigger gets created).

Xeno
Xeno ist offline  
Alt 26.07.2013, 13:44   #287 (permalink)
Newbie
 
Registriert seit: 26.07.2013
Beiträge: 10
Standard

Man bekommt sehr viele Fehlermeldungen vom Typ:

"Error undefined variable in expression: _empty"

Du hast ja schon gemeint, dass man solche undefinierten Variablen mit einem Standardwert initialisieren soll (was man eigentlich immer in der IT macht), aber welcher von welchem Typ ist "_empty"?

Könntest du hier eine Zeile bereitstellen, die _empty dementsprechend initialisiert und die man an den Anfang all deiner Scripte reinpasten könnte?
Predator.v2 ist offline  
Alt 26.07.2013, 13:52   #288 (permalink)
10 Jahre hx3
5000 Beiträge
 
Benutzerbild von Xeno
 
Registriert seit: 03.01.2008
Alter: 84
Beiträge: 6.552
Standard

Poste mal ein paar Fehlermeldungen mit dem _empty...

Xeno
Xeno ist offline  
Alt 26.07.2013, 13:53   #289 (permalink)
Newbie
 
Registriert seit: 11.07.2013
Beiträge: 19
Standard

@xeno
oki I follow your intructions and : the result perfect ! it's working héhé your are my god
piedebeouf ist offline  
Alt 27.07.2013, 00:03   #291 (permalink)
Newbie
 
Registriert seit: 11.07.2013
Beiträge: 19
Standard

[u][/U]@ predator . v2
the problem in x_helirespawn2.sqf : the solution is explain in page 14 .
Zitat von Xares Beitrag anzeigen
_ammop setPos d_base_fac_ammoload;
File C:\Users\xpkplx\Documents\Arma 3 - Other Profiles\Vandeiken\missions\co40_Domi_2_99f_Blue_R anked_NO.Stratis\x_server\x_initx.sqf, line 19

Replace

Code:
_ammop setPos QGVAR(base_fac_ammoload);with

Code:
_ammop setPos markerPos QGVAR(base_fac_ammoload);in x_server\x_initx.sqf (I think d_base_fac_ammoload is a marker, though not sure ).


Zitat von Xares Beitrag anzeigen
_heli_array set [count _heli_array, [_vehicle,_number_v,_ifdamage,-1, positio>
Error position: <_vehicle,_number_v,_ifdamage,-1, positio>
Error Undefined variable in expression: _vehicle
File C:\Users\xpkplx\Documents\Arma 3 - Other Profiles\Vandeiken\missions\co40_Domi_2_99f_Blue_R anked_NO.Stratis\x_server\x_helirespawn2.sqf, line 13

Check if all choppers exist where the x_helirespawn2 script gets called (afair d_init.sqf again).
If a chopper doesn't exist remove the reference from the execVM parameter array in d_init.sqf




If you get a "Undefined variable in expression" error try to define the variable with a default value prior usage.
Afair the variable is used in a trigger and before the "undefined variable check" change one could use undefined variables in trigger conditions which seems to be no longer possible.

So again, define those undefined variables with a default value somewhere (in case of d_sum_camps it should be an integer value, most likely 0, define it before the trigger gets created).
Xeno
piedebeouf ist offline  
Alt 27.07.2013, 12:19   #292 (permalink)
10 Jahre hx3
5000 Beiträge
 
Benutzerbild von Xeno
 
Registriert seit: 03.01.2008
Alter: 84
Beiträge: 6.552
Standard

2.99j

Changelog:
Zitat:

What's new in 2.99j ?

* Added: More sidemissions (all together 20 sidemissions now, Stratis is simply too small)
* Fixed: Heli lift, added missing vehicles
* Changed: Updated to reflect Beta 0.74 changes (undefined variables, etc) and added more vehicles (armor, etc)
* Changed: Enabled para drop (vehicle and ammo) for squad leaders again (no artillery drop yet)
* Changed: Enabled HALO for players (from base, if enabled and inside choppers if above a specific height)
* Changed: All addAction scripts are now precompiled (new feature in TOH/A3, accepts code instead of script name)

Xeno
Xeno ist offline  
Alt 27.07.2013, 13:11   #293 (permalink)
50 Beiträge100 Beiträge250 Beiträge
 
Benutzerbild von WickerMan
 
Registriert seit: 28.12.2008
Ort: Bavaria (nix Germany)
Beiträge: 307
WickerMan eine Nachricht über ICQ schicken
Standard

@xeno . . . Danke
WickerMan ist offline  
Alt 27.07.2013, 13:25   #294 (permalink)
50 Beiträge
 
Benutzerbild von boggler
 
Registriert seit: 29.05.2009
Beiträge: 87
Standard

ich verkneif mir jetzt mal jegliche dummen Kommentare und sage einfach nur Danke!
__________________
est. 1848

boggler ist offline  
Alt 27.07.2013, 13:40   #295 (permalink)
10 Jahre hx3
5000 Beiträge
 
Benutzerbild von Xeno
 
Registriert seit: 03.01.2008
Alter: 84
Beiträge: 6.552
Standard

Sag der "undefined variable" Fehlermeldung Danke. Ansonsten wäre das nicht passiert
(Und wenn doch noch eine übrig sein sollte, Bescheid sagen)

Xeno
Xeno ist offline  
Alt 27.07.2013, 14:16   #296 (permalink)
10 Jahre hx3
500 Beiträge
 
Registriert seit: 13.04.2003
Beiträge: 761
Standard

Boah geil. Danke Xeno !!
Verdammt nett von Dir.
[HSP] NoFu ist offline  
Alt 27.07.2013, 14:18   #297 (permalink)
Newbie
 
Registriert seit: 12.09.2009
Beiträge: 43
Standard Danke!

Mal wieder ein fettes Danke an Xeno!
Zar-Bomber ist offline  
Alt 27.07.2013, 17:57   #298 (permalink)
xqm
Newbie
 
Registriert seit: 17.05.2013
Beiträge: 42
Standard

Excellent work, Xeno! Great news.

Code:
Error in expression <localize "STR_DOM_MISSIONSTRING_1429");
_ctrl2 ctrlEnable true;
_ctrl = _disp di>
  Error position: <_ctrl2 ctrlEnable true;
_ctrl = _disp di>
  Error Undefined variable in expression: _ctrl2
File mpmissions\__CUR_MP.Stratis\x_client\x_f\x_ui\fn_squadmanagementfill.sqf, line 35
Think line 32 in that file has a typo?
Code:
_ctrl2 ctrlEnable true;
should be
Code:
_ctrl ctrlEnable true;
xqm ist offline  
Alt 27.07.2013, 18:11   #299 (permalink)
10 Jahre hx3
5000 Beiträge
 
Benutzerbild von Xeno
 
Registriert seit: 03.01.2008
Alter: 84
Beiträge: 6.552
Standard

Dang, squad management was one of the things I didn't test.
You are right, remove the 2.
Let's wait and see if there are more of those undefined problems. I'm on the run anyway, the weather is too nice (32 degree Celsius) to spend the evening inside the house

Xeno
Xeno ist offline  
Alt 27.07.2013, 20:40   #300 (permalink)
xqm
Newbie
 
Registriert seit: 17.05.2013
Beiträge: 42
Standard

Zitat von Xeno Beitrag anzeigen

Dang, squad management was one of the things I didn't test.
You are right, remove the 2.
Let's wait and see if there are more of those undefined problems. I'm on the run anyway, the weather is too nice (32 degree Celsius) to spend the evening inside the house

Xeno

i fixed that back in f build and i swear i posted it here. beer makes me forget stuff.

anyhoo, seriously good effort with j build. lovin your work.
xqm ist offline  
 

Stichworte
domination, domination arma³, opa xeno, terpmussbwmodmachen, xeno dominus est, xeno wechseljahre, xeno weibliche hormone, xenoichwilleinkindvondir, xeno_goes_feminin


Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)
 

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Hilfe bei Arma 2 / ACE / Domination remo_ms Technische Fragen & Probleme 1 08.08.2013 14:31
Domination - Kann jemand helfen ? =) maxx2504 Editing & Scripting 3 15.09.2012 18:44
Domination! Anniversary Edition Xeno Usermade Missions 102 12.08.2012 15:27
Xeno`s Domination für Reshmaan Province [koka] Hellcat Editing & Scripting 0 29.07.2012 22:31
Domination Ace Ver. (z) Respawn Probleme Panzagrenadier Technische Fragen & Probleme 0 02.02.2012 01:16


Kontakt - HX3.de - Archiv - Nach oben

Angetrieben durch vBulletin, Entwicklung von Philipp Dörner & Tobias



SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119