-
Content Count
3093 -
Joined
-
Last visited
-
Medals
-
cfgcommunicationmenu [SOLVED] Calling custom function stored in a file through a class expression
gc8 replied to thy_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
ah then you must spawn it instead of call https://community.bistudio.com/wiki/spawn -
cfgcommunicationmenu [SOLVED] Calling custom function stored in a file through a class expression
gc8 replied to thy_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
yep its little bit better than execVM weird that init.sqf didnt work (Maybe wrong path?) you can always put the support_request_heli in debug console and see if it shows the code, if so its defined, if nothing then not defined -
cfgcommunicationmenu [SOLVED] Calling custom function stored in a file through a class expression
gc8 replied to thy_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
good to hear you got it working. i guess the problem was that you did not define support_request_heli variable. this is my bad i forgot to tell you you can define it like this: support_request_heli = compileScript ["support_request_heli.sqf"]; then the call should work -
cfgcommunicationmenu [SOLVED] Calling custom function stored in a file through a class expression
gc8 replied to thy_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
well make sure the script/function is called. also remember to reload your description.ext im off, hope you get it sorted out! -
cfgcommunicationmenu [SOLVED] Calling custom function stored in a file through a class expression
gc8 replied to thy_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
cant you just use: expression = "[heliTest, _pos] call support_request_heli"; ? -
cfgcommunicationmenu [SOLVED] Calling custom function stored in a file through a class expression
gc8 replied to thy_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
it should work because the _this variable is left untouched but you could also do expression = "_this call support_request_heli"; and refer to this: https://community.bistudio.com/wiki/Arma_3:_Communication_Menu#Expression_Arguments (though it shows global variables.. should be local instead) so you can also do expression = "[vehicle player, _pos] call support_request_heli"; -
cfgcommunicationmenu [SOLVED] Calling custom function stored in a file through a class expression
gc8 replied to thy_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
expression = "call support_request_heli"; -
Performance after the latest Update yesterday
gc8 replied to the_one_and_only_Venator's topic in ARMA 3 - TROUBLESHOOTING
i thought that i did notice something but wasnt sure. i have just few mods -
Scripted Waypoint Statements
gc8 replied to scottb613's topic in ARMA 3 - MISSION EDITING & SCRIPTING
the format is not going to work because _grp will become string and not the actual variable its better to put the code in function like this: private strReport = { // Rest of the code here }; Then call it like this: _wp setWaypointStatements ["true", "call strReport"]; -
[SOLVED] Create simple weapon model without fire texture
gc8 replied to Ibragim A's topic in ARMA 3 - MISSION EDITING & SCRIPTING
This: _simpleObject hideSelection ["zasleh", true]; -
lot of new features since last update. 0.9.96 is the current version. Read all about changes in here: https://steamcommunity.com/sharedfiles/filedetails/changelog/1981883271
- 634 replies
-
- cti
- ai commander
-
(and 2 more)
Tagged with:
-
Another update, posting here for the change Version 0.9.89 What's new: FOBs have radar that displays aircrafts on the map New trait to allow running faster Capturing places does no longer require defeating all enemies but have superiority in numbers Fixed script errors
- 634 replies
-
- cti
- ai commander
-
(and 2 more)
Tagged with:
-
Made some changes to allow better flying with aircrafts Version 0.9.86 What's new: Enemy AA range is reduced to allow more room for flying AA threat map can be turned on while in aircraft Other smaller changes
- 634 replies
-
- cti
- ai commander
-
(and 2 more)
Tagged with:
-
New version is out! (0.9.84) What's new: Added 3D pointer on purchased vehicles Added ability to buy vehicles locked Fixed some vehicle actions had long delay to appear Other bug fixes
- 634 replies
-
- cti
- ai commander
-
(and 2 more)
Tagged with:
-
How to check if function is available?
gc8 replied to dlder's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
isnil gives false if the function/variable passed to it, is defined