-
Content Count
301 -
Joined
-
Last visited
-
Medals
Everything posted by Alert23
-
The Nightmare Hi Armaholic's! Cinematic Cutscenes, Simple puzzle + epic Bossfight! Steam: https://steamcommunity.com/sharedfiles/filedetails/?id=1719226615 ALSO DOWNLOAD THIS ADDONS WHICH DOSENT EXIST ON STEAM: CJTF101 Editor http://www.armaholic.com/page.php?id=20821
-
Hi, im trying to make a reflectorCone Look at screen center but I have struggles with the "setVectorDirAndUp" command, can some please help me solve this issue? lightCone = "Reflector_Cone_01_narrow_white_F" createVehicle [0,0,0]; LightCone attachTo [player, [0,0,0],"head"];//i dont want it to follow bone rotation as it is not accurate if player is in prone or crouch waitUntil {!isNull (findDisplay 46)}; (findDisplay 46) displayAddEventHandler ["MouseMoving", { lightcone setVectorDirAndUp [[0,0,0], [0,0,0]];//i dont know what to type here }];
-
Okay, a amazing guy "EL_D148L0" from Arma Discord helped me with this issue and here is the solution for anyone interested: lightCone = "Reflector_Cone_01_narrow_white_F" createVehicle [0,0,0]; lightCone attachTo [player, [0,0,0], "head", false]; waitUntil {!isNull (findDisplay 46)}; (findDisplay 46) displayAddEventHandler ["MouseMoving", { lightCone setVectorDirAndUp [ player vectorworldtomodel ((positionCameraToWorld [0,0,1]) vectordiff (positionCameraToWorld [0,0,0])), player vectorworldtomodel ((positionCameraToWorld [0,1,0]) vectordiff (positionCameraToWorld [0,0,0])) ]; }];
-
Thanks for the link, but I'm very weak at math, I hope someone with better understanding than me can help
-
https://steamcommunity.com/sharedfiles/filedetails/?id=2664935106
-
Arma 3 Photography - Pictures only NO comments! And List your Addons Used!
Alert23 replied to Placebo's topic in ARMA 3 - GENERAL
no mods -
CYTECH INDUSTRIES - [WIP] Underground Terrain
Alert23 replied to Dan Tronic's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
can't we just create a Community poll for it, and let the community decide? XD -
Arma 3 Photography - Pictures only NO comments! And List your Addons Used!
Alert23 replied to Placebo's topic in ARMA 3 - GENERAL
no mods -
Project: Psykers!
Alert23 replied to accuracythruvolume's topic in ARMA 3 - MISSION EDITING & SCRIPTING
blabla -
lineIntersectsSurfaces problem
Alert23 replied to Luft08's topic in ARMA 3 - MISSION EDITING & SCRIPTING
im not sure if i understand your problem right but im using this to check if a unit is visible to another unit checkVisibility BIS_fnc_inAngleSector tested like this [] spawn { while {sleep 1;true} do { if ( [getposATL spectator1, getdir spectator1, 80, getposATL player] call BIS_fnc_inAngleSector && [ObjNull, "VIEW"] checkVisibility [eyepos spectator1, eyePos player] > 0) then { hintSilent "he sees you";} else { hintSilent "he can't see you";}; }; }; ps: if not helpful please ignore 😅 -
Super Mario Kart 1vs1 I made this purely for fun, as a proof of concept and released as LOL provider and it was something i always wanted to create just due to the fact that within ARMA nearly anything is possible. STEAM POWERUP'S
- 1 reply
-
- 2
-
ARMA 3 Addon Request Thread
Alert23 replied to max power's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
hello, just an idea for a mod-request that would definitely make cinematic camera scenes much more easier for the arma community. Feuerex has recently uploaded a demo-video where he shows how to create "Smooth camera pans with Bézier curves" he even provides an example script, of course all credits goes to him for making the script available for the community. example video: so if anyone with scripting/modding knowledge would do this then im pretty sure the whole community would love it and appreciate it. -
trigger (Solved) vehicle respawn
Alert23 replied to maaarv's topic in ARMA 3 - MISSION EDITING & SCRIPTING
this post is also a good solution- 8 replies
-
- server
- development
- (and 5 more)
-
i had the same issue, see this post
-
camcreate + switchCamera and currentWeaponMode
Alert23 replied to Alert23's topic in ARMA 3 - MISSION EDITING & SCRIPTING
is this even possible? or is there an command like "mouseButtonHoldDown" similar to "keyDown". how does fullauto shooting work in arma maybe that would solve my question. any help would be greatly appreciated. -
camcreate + switchCamera and currentWeaponMode
Alert23 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
hello, in this example code it is possible to fire your weapon in a custom camera view although it says currentWeaponMode player it does only fire single shots regardless of the currentWeaponMode private _cam = "Land_HandyCam_F" createVehicleLocal [0,0,0]; _cam hideObject true; _cam attachTo [player, [0,0,10]]; _cam setVectorUp [0,0.99,0.01]; _cam switchCamera "Internal"; findDisplay 46 displayAddEventHandler ["MouseButtonDown", { if (_this select 1 == 0) then { player forceWeaponFire [currentMuzzle player, currentWeaponMode player]; }; false }]; findDisplay 46 displayAddEventHandler ["KeyDown", { if (_this select 1 in actionKeys "ReloadMagazine") then { reload player; }; false }]; is there a way to make it work for "burst" and "FullAuto" too? -
How to remove Laws of War logo from mission loading screen? [SOLVED]
Alert23 replied to bardosy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
correct me if i am wrong... but as far as i have experienced you only need a dlc if you use,wear or drive a dlc content right? but using other content such as objects inside a mission won't necessarily make you buy the dlc right? -
RscTitles - How to Scale an Image to Fullscreen?
Alert23 replied to Trooper Biggs's topic in ARMA 3 - MISSION EDITING & SCRIPTING
hey, i call a fullscreen image like this class RscTitles { titles[] = {"SCP5"}; class SCP5 { idd = -1; movingEnable = 0; duration = 4; fadein = 1; fadeout = 1.9; name="SCP5"; controls[]={"Picture"}; class Picture { x = safezoneX; y = safezoneY; w = safezoneW; h = safezoneH; text="SCP5.jpg"; sizeEx = 1; type=0; idc=-1; style=48; colorBackground[]={0,0,0,0}; colorText[]={1,1,1,1}; font="puristaMedium"; }; }; }; call with: Syntax: layer cutRsc [class, effect, speed, showInMap] example 1 cutRsc ["SCP5", "PLAIN"];- 1 reply
-
- 2
-
hi, im curious if someone knows how i can achive such an effect as in this contact mission my guess would be drawicon3D?
- 1 reply
-
- 1
-
Something like this?
-
v1 script released JBOY Giant v1
Alert23 replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yes, please a mod version for mission makers. -
Tree falling SFX sound path...where is it?
Alert23 replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
a3\sounds_f\environment\sfx\falling_trees\falling_broadleaf_tree_big.wss a3\sounds_f\environment\sfx\falling_trees\falling_broadleaf_tree_small.wss a3\sounds_f\environment\sfx\falling_trees\falling_palm_big.wss a3\sounds_f\environment\sfx\falling_trees\falling_palm_small.wss from here Link -
[Help] setObjectScale on simulated objects?
Alert23 replied to Twiznak's topic in ARMA 3 - MISSION EDITING & SCRIPTING
just tried this: put a man down and named him dude1 in his init: [] spawn { while {alive dude1} do { dude1 setObjectScale 0.3; }; }; and it seems like its working , atleast he is running and chasing me XD so funny he is ant man https://i.imgur.com/4qLoZCK.gifv so funny XD -
object face player in 3D direction
Alert23 replied to Alert23's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i finally figured it out 🤣 cam1 switchCamera "internal"; onEachFrame { cam1 setVectorDirAndUp [ (eyepos cam1) vectorFromTo (aimpos player), [0,0,1] ]; };- 1 reply
-
- 4
-
hey, i want to create a mission with a unique camera view, so i have multiple objects (Sign_Sphere10cm_F) named and placed in editor for every area acting as a camera, what i do is switch the camera to that object and use an onEachFrame command to focus on the player, now i got this code which will focus on the player but not in 3D i really need help with this, cant solve it since days.. cam1 switchCamera "Internal"; onEachFrame { cam1 setdir (cam1 getdir player); }; example video
- 1 reply
-
- 1