Jump to content

Alert23

Member
  • Content Count

    301
  • Joined

  • Last visited

  • Medals

Everything posted by Alert23

  1. 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
  2. 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 }];
  3. Alert23

    setVectorDirAndUp help

    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])) ]; }];
  4. Alert23

    setVectorDirAndUp help

    Thanks for the link, but I'm very weak at math, I hope someone with better understanding than me can help
  5. Alert23

    User Mission Request Thread

    https://steamcommunity.com/sharedfiles/filedetails/?id=2664935106
  6. can't we just create a Community poll for it, and let the community decide? XD
  7. Alert23

    Project: Psykers!

    blabla
  8. 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 😅
  9. 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
  10. Alert23

    ARMA 3 Addon Request Thread

    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.
  11. this post is also a good solution
  12. Alert23

    Condition OR

    i had the same issue, see this post
  13. 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.
  14. 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?
  15. 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?
  16. 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"];
  17. hi, im curious if someone knows how i can achive such an effect as in this contact mission my guess would be drawicon3D?
  18. Alert23

    Environment burning

    Something like this?
  19. Yes, please a mod version for mission makers.
  20. 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
  21. 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
  22. i finally figured it out 🤣 cam1 switchCamera "internal"; onEachFrame { cam1 setVectorDirAndUp [ (eyepos cam1) vectorFromTo (aimpos player), [0,0,1] ]; };
  23. 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
×