-
Content Count
7898 -
Joined
-
Last visited
-
Medals
-
Medals
Everything posted by froggyluv
-
[question] small icons for soldier types
froggyluv replied to FriZY_SK's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Man I agree 100% Always wanted better icons such as Marksman and Sharpshooter etc.. I think Unsung has all new and much broader Icons but not sure. Would actually love dynamic Icons with more unit information as well as possibilty to show enhanced skillset etc but maybe Im just getting Hidden and Dangerous nostalgia.. Lemme know if you get those Wolle ones config'ed id love to check em out. @JohnnyDogs yo man thats lookin fun cant wait to take my Jack Russell - Apache Arma Huntin -
New player help -Mods in Showcases? (Looking for Freestyle play with weapon mods)
froggyluv replied to tenhunter's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
If you just wanna change gun in open map then just right click on unit and select Edit Loadout -
[Question] Changing Text Color by Side
froggyluv replied to froggyluv's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Its for added ingame text banter which scope is pretty limitless -my goal has always been to just feel like im playing in a more alive, dynamic world even when just firing up the editor. Heres a quickly made footage though you can see i havent yet controled the spammy nature of it yet -
[Question] Changing Text Color by Side
froggyluv posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
So this script is from SaOk's great WLA missions and its a function to highlight various text over AI to enliven the experience. Ive tried to modify (badly) to change the texts color depending on Faction type FU = { private ["_unit","_line","_someId","_t","_ar","_k"]; _unit = _this select 0; _line = _this select 1; _side = side _unit; hint str _side; _F_Color = []; NUMM =0; NUMM = NUMM + 1; _someId = format ["IDUSAY%1",NUMM]; _k = 1; if (player distance _unit > 10) then {_k = 100/((player distance _unit)*10);}; [_someId, "onEachFrame", { _cCiv = [0.44,0.44,0.905,1]; _cInd = [0.2,0.9,0.505,1]; _cWest = [0.2,0.2,0.805,1]; _cEast = [0.44,0.44,0.905,1]; switch _side do { case EAST: { if (_side == EAST) then {_F_Color = [0.44,0.44,0.905,1]}; ////sometimes im using the color code directly other times using the _cEast type variable which is redundant... :/ }; case WEST: { if (_side == WEST) then {_F_Color = [0.2,0.2,0.805,1]}; }; case INDEPENDENT: { if (_side == INDEPENDENT) then {_F_Color = _cInd}; }; case CIVILIAN: { if (_side == CIVILIAN) then {_F_Color = _cCiv}; }; }; _start = getposATL (_this select 0); _start set [2,(_start select 2)+1.9]; drawIcon3D ["" ,_F_Color, _start, 0, 0, 0, _this select 1, 1, _this select 2, "TahomaB"]; ////////////////// HERE is where the variable _F_Color should be picking up the variable from _side (which displays properly in hint) but for some reason always comes up as empty brackets }, [_unit, _line,(.05 * _k)]] call BIS_fnc_addStackedEventHandler; _t = 3; if (count _this > 2) then {_t = _this select 2;}; sleep _t; [_someId, "onEachFrame"] call BIS_fnc_removeStackedEventHandler; sleep 18; if (isNull _unit || {!alive _unit}) exitWith {}; }; [cursortarget, "Fcckkk you!!!"] spawn FU; systemchat str _F_Color -
[Question] Changing Text Color by Side
froggyluv replied to froggyluv's topic in ARMA 3 - MISSION EDITING & SCRIPTING
...and then Larrow shows up.. Thanks abunch man - it needed _side = side _unit added but it works out really well. -
[Question] Changing Text Color by Side
froggyluv replied to froggyluv's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yup man seriously appreciated all it was killing me. Still learning proper scope syntax but i understand the variables needed to be inside the scope. Also the Cursortarget was just for testing this function is actually called by all units including Civilians and Grenades(thats why removed "if this is typeof 'man' ") for various ingame banter. Im calling this with [Fred, "Fccckkk You Benny!"] Spawn FU. FU = { private ["_unit","_line","_someId","_t","_ar","_k"]; params ["_unit","_line","_timeout"]; NUMM =0; NUMM = NUMM + 1; _someId = format ["IDUSAY%1",NUMM]; [_someId, "onEachFrame", { _cCiv = [0.44,0.44,0.905,1]; _cInd = [0.2,0.9,0.505,1]; _cWest = [0.2,0.2,0.805,1]; _cEast = [0.44,0.44,0.905,1]; _unit = _this select 0; _line = _this select 1; _side = side _unit; _F_Color = [1,1,1,1]; _k = linearConversion[ 0, 150, player distance _unit, 0.03, 0.005, true ]; //// Awesome switch _side do { case east: { _F_Color = [0.73,0.24,0.11,1] }; case West: { _F_Color = [0.2,0.2,0.805,1]; }; case Independent: { _F_Color = _cInd; }; case Civilian: { _F_Color = _cCiv; }; }; _start = getposATL (_this select 0); _start set [2,(_start select 2)+1.9]; drawIcon3D ["" , _F_Color, _start, 0, 0, 0, _line, 1, _k, "TahomaB"]; }, [_unit, _line]] call BIS_fnc_addStackedEventHandler; _t = 3; if (count _this > 2) then {_t = _this select 2;}; sleep _t; [_someId, "onEachFrame"] call BIS_fnc_removeStackedEventHandler; }; I know Larrow you said not to use BIS_fnc_addStackedEventHandler and BIS_fnc_removeStackedEventHandler insame code but what do you suggest to turn off the text after alotted time? -
Path-finding for AI building Entry / Exit
froggyluv replied to madrussian's topic in ARMA 3 - DEVELOPMENT BRANCH
+1 Pretty sure the landscape designers didnt and dont talk directly with the AI dept in a very thorough way.. -
Yup slow text is a definite sign of an overloaded system with regards to Arma
-
AI sniper killing an enemy VIP (and him only)
froggyluv replied to pdp's topic in ARMA 3 - MISSION EDITING & SCRIPTING
doTarget VIP doFire VIP -
TPW MODS: enhanced realism and immersion for Arma 3 SP.
froggyluv replied to tpw's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Ok, most likely that im on Dev branch. I have Feints and can place them via editor but notice i cant with Zeus.- 5767 replies
-
- 1
-
- single player
- realism
-
(and 1 more)
Tagged with:
-
TPW MODS: enhanced realism and immersion for Arma 3 SP.
froggyluv replied to tpw's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Havent been able to spot any SHarks yet -i ve checked the array as well as just all the agents swimming around in Zeus. Now I only transplanted the Animals.sqf as well as the upgraded Userconfig file -do i need any other files?- 5767 replies
-
- 1
-
- single player
- realism
-
(and 1 more)
Tagged with:
-
# Cue FroggyRantNao Agree. More crowd type animations would really be great - jeering, agitated, elated, fist pumping etc... But we did recently get some really nice Civilian reactions to war which is really, really nice to have. We also have some good albeit slightly awkward gestures like pointing and what not. Variety in animation gives more spice to the game so the more the merrier
-
Drongo's Command Enhancement
froggyluv replied to Drongo69's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Yeah Terrain Analysis sounds pretty sick and also interested in your Town Fill -pretty much all of its gold.- 171 replies
-
set a unit to look out of window function?
froggyluv replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
That was quite the delayed reaction necro -ha! Yeah thats exactly what im intending to do, its actually really cool just making AI look up and gaze at 2nd floor windows but yeah invisible targets are where its at. Sadly I dont know where Invisible targets are (full retard flame suit on -literally) -
Cant a graphic be dynamic? Meaning start with a clean one, switch it up as you dirty it up on country roads? Maybe not possible, dont understand these sorts of things. Such as never got why we cant have more than one walking animation at once
-
set a unit to look out of window function?
froggyluv replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Still waiting..... Hehe, seriously man this is a cool script i forgot about. Id love to get the AI to check windows of a house they know an enemy is in - this is one aspect, the feeling of being hunted by AI that is sorely needed in this game imo. The worst is when they know your in a house (well sorta), your the only enemy and known threat, yet they lay outside with rifles aimed perpendicular or worse, opposite direction of house your in. Bad. Anyways, I can get the AI to DoWatch the window spheres but they wont target or DoMove to them as im guessing they are positions not objects? Any ideas on how to spawn invisible objects in those spots to get AI to move to them? @Zapat: Sorry never saw your post :P -
[Functions] UnitCapture/UnitPlay for Infantry Units in ArmA 3
froggyluv replied to TedHo's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@0:38 of that video you see a bullet hole and blood appear at an exact location -how was that done!? -
BloodLust (Version 2022.04.13)
froggyluv replied to zooloo75's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Thats all adjustable as Zooloo gave a crap ton of options/variables - just hit Enter while in Debug and you can adjust time settings for Blood disappearing. Footsteps are different issue but this script by HallyG works pretty well (remember change name from Player to whatever your units name is): h = [] spawn { private _lastPos = getPosWorld player; private _tmpPos = [0,0,0]; private _positions = []; private _footsteps = []; private _i = 0; while {true} do { _tmpPos = getPosWorld player; if (_tmpPos distance _lastPos >1) then { _footstep = createSimpleObject [ format ["a3\characters_f\footstep_%1.p3d", ['l', 'r'] select (_i %2)], AGLtoASL (player modelToWorldVisual ([[0,0.2,0],[0.2,0,0]] select (_i %2))) ]; _footstep setDir (getDir player); _positions pushBack [_tmpPos, time, _footstep]; _i = _i + 1; _lastPos = _tmpPos; }; hintSilent format ["FOOTSTEPS: %1", count _positions]; sleep (1/((speed player) max 1)); }; }; -
How to recieve orders from AI commander but keep command of squad?
froggyluv replied to boost94@hotmail.co.uk's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Don't think what your asking for is inherently built into the game. There are missions like HETMAN and mods like ALIVE which create an overall AI commander and of course the old CTI game modes but thats about it.- 2 replies
-
- arma 3
- commanding
-
(and 6 more)
Tagged with:
-
How to create a mission in which ai isn't...not smart?
froggyluv replied to jakers12's topic in ARMA 3 - MISSION EDITING & SCRIPTING
No AI addon can really change that type of engine level hard coded behaviour -
How to create a mission in which ai isn't...not smart?
froggyluv replied to jakers12's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Agree with you and have been saying it for ages - AI targeting orientation needs to be overhauled from the ground up. Simply, nothing really matters, not planning, not strategy guides, not caliber or type of troop if the soldier cant simply keep oriented at his closest known target. Its part animation system, part the way AI choose to make decisions, or lack there of.. -
Scripting AI to use Animation function at waypoint
froggyluv replied to obrien979's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Ok once could be a typo but ..twice...? Im unaware of this specific adult type Fnc, please elabobrate? Try posting what've you've tried and people more likely to help ya -
Oh heck Yah!!! Worlds better so much more immersive -huge thanks
-
Trying to pass elements over to BIS_fnc_ambientAnim__terminate
froggyluv posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Using the example provided by the WIKI Works great when placed into individual map placed units but Id like to have the ability to have master control over the whether they spawn in mass or just walk into a certain area. A. _this = _this select 0; [_this,"SIT2"] call BIS_fnc_ambientAnim; 0 = _this spawn waitUntil {behaviour _this == "combat"}; [_this] call BIS_fnc_ambientAnim_terminate; Doesnt Work B. {[_x "SIT2"] call BIS_fnc_ambientAnim; 0 = [_x] spawn {waitUntil {behaviour _x == "combat"}; [_x] call BIS_fnc_ambientAnim_terminate}} foreach thisList Also getting Undefined errors on this. -
Trying to pass elements over to BIS_fnc_ambientAnim__terminate
froggyluv replied to froggyluv's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@pierremgi as usual i was overcomplicating things unknown syntax tends to do that to me So in the Debug: {IF (side _x == east) then {[_x, "SIT", "light"] call BIS_fnc_ambientAnim;}} foreach allunits; { _x spawn Frog_TerminateMeArnold} forEach allUnits Frog_TerminateMeArnold = { waitUntil {behaviour _this == "combat"}; _this call BIS_fnc_ambientAnim__terminate }; Is working!! Obviously AllUnits will be slimmed down and a sleep added but just wanted to get it up and running. Thanks again man I dont always get your stuff at first but it usually sends me down the right direction. @BunchaMooks: Cmon guys Im way studlier than that think.... lol just watched that Fink video - disturbing yet mildly arousing...?...Beerfest haha takes me back to Super Troopers