

killzone_kid
Member-
Content Count
3971 -
Joined
-
Last visited
-
Medals
Community Reputation
1326 ExcellentAbout killzone_kid
-
Rank
Chief Warrant Officer
Profile Information
-
Gender
Not Telling
Contact Methods
-
Biography
Arrivederci
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Player in remoteExec
killzone_kid replied to Ganvai84's topic in ARMA 3 - MISSION EDITING & SCRIPTING
try switch (vehicleVarName _vehicle) do instead of switch (_vehicle) do- 6 replies
-
- 1
-
-
- remoteexec
- player
-
(and 1 more)
Tagged with:
-
dimon started following killzone_kid
-
How do i stop the howling wind? all weather is set to o and it sounds like I'm in a hurricane
killzone_kid replied to PSYKO_nz's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Rev.150091 https://community.bistudio.com/wiki/enableEnvironment -
How do i stop the howling wind? all weather is set to o and it sounds like I'm in a hurricane
killzone_kid replied to PSYKO_nz's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Make a feedback ticket I will add an option to enableEnvironment -
callExtension question(s)
killzone_kid replied to madrussian's topic in ARMA 3 - MISSION EDITING & SCRIPTING
there is no limit if you use extension callback -
ListBox multiple item selection issues
killzone_kid replied to Schatten's topic in ARMA 3 - MISSION EDITING & SCRIPTING
where did you get this code from? -
disableBrakes work only after push
killzone_kid replied to h4wek's topic in ARMA 3 - DEVELOPMENT BRANCH
When you disable brakes the vehicle is in sleep state like @reyhard explained. You can awake the vehicle but the force of gravity translated to pull might not be strong enough. But giving vehicle a little velocity nudge is all you need quad disableBrakes true; quad setvelocitymodelspace [0,1,0]; -
ListBox multiple item selection issues
killzone_kid replied to Schatten's topic in ARMA 3 - MISSION EDITING & SCRIPTING
could you point to where it says wrong? can you give example what code doesnt do what you expect? -
ListBox multiple item selection issues
killzone_kid replied to Schatten's topic in ARMA 3 - MISSION EDITING & SCRIPTING
lbselection for non LB_MULTI was bugged. There are minor fixes several of them including crash so wait until dev. Some will make it into hotfix some to 2.12. If you know of any bugs -> ticket + tag me -
ListBox multiple item selection issues
killzone_kid replied to Schatten's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Next dev will have a few fixes to LB_Multi controls -
ListBox multiple item selection issues
killzone_kid replied to Schatten's topic in ARMA 3 - MISSION EDITING & SCRIPTING
There are problems with multiselect listbox, one of which @Larrow has described but there are more -
Execute code when unit reloads weapon
killzone_kid replied to AgentRev's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Have you seen https://community.bistudio.com/wiki/weaponState ? -
Remove flying insects into buildings
killzone_kid replied to fidel_castor's topic in ARMA 3 - MISSION EDITING & SCRIPTING
enableenvironment false removes insects too -
More flexibility with callExtension
killzone_kid replied to madrussian's topic in ARMA 3 - MISSION EDITING & SCRIPTING
rev 149751 -
More flexibility with callExtension
killzone_kid replied to madrussian's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yes, having freeExtension command would have been ideal...this is why I'm going to add one and limit it to DEV branch. -
More flexibility with callExtension
killzone_kid replied to madrussian's topic in ARMA 3 - MISSION EDITING & SCRIPTING
>Is it possible to tell A3 to release control of a previously called dll? (without exiting game) no - this is security feature >Any particular reason calling LoadLibrary (inside your callExtension dll) to a separate dll shouldn't work?~ >If this idea should work, anyone know if that separate dll will end up "locked" (until game exit) as well, making all this a fool's errand? It can be done, for example http://killzonekid.com/arma-3-extension-tester-callextension-exe-callextension_x64-exe/ has freeExtension “<name>” command