Talyn
Member-
Content Count
123 -
Joined
-
Last visited
-
Medals
-
Medals
Everything posted by Talyn
-
"Stop the convoy heading to the airport, and clear out the enemy desert base." This is a faithful recreation of Desert Ambush, the highly popular cooperative mission that featured in the original Operation Flashpoint (ArmA: Cold War Assault). Every element has been carefully recreated: the same number of soldiers, vehicles and similar-ish weapons. A lot has changed between Operation Flashpoint of 2001 and the latest version of ArmA 3, therefore there is the option of a virtual ammo drop and the option to enable revives (mission parameters). The default setup is very hardcore, just like the original. AI difficulty is dependent upon the host's settings. This mission requires RHS (AFRF, USAF, GREF and SAF). Mission download link: http://steamcommunity.com/sharedfiles/filedetails/?id=966054556&searchtext=
-
One of my favorite missions in the original, the mission clan members were tested on and something I had to recreate with the Malden DLC.
-
Arma 3 Photography - Pictures only NO comments! And List your Addons Used!
Talyn replied to Placebo's topic in ARMA 3 - GENERAL
Malden + RHS + Su-35S Flanker E- 6858 replies
-
- 28
-
I had a lot of fun making this and if you enjoyed it, I'd appreciate your vote. :)
-
Community Upgrade Project - CUP Terrains
Talyn replied to CUP's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Hello! Is there a fix/workaround for this: http://dev.cup-arma3.org/T1864 http://dev.cup-arma3.org/T1670 I'm not getting any vehicle dust on Tanoa with Terrains Core activated and I noticed the tracker stated that the issue was closed. -
Strike Back mission trailer: http://steamcommunity.com/sharedfiles/filedetails/?id=308705926
-
UPSMON Updated to ArmaIII
Talyn replied to cool=azroul13's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I've just tried that and sadly it made no difference. -
UPSMON Updated to ArmaIII
Talyn replied to cool=azroul13's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Has anyone managed to get a custom init working correctly? I'm currently trying the below as a test but it doesn't work; I have tried other arrangements of the command but the one below seems the most logical to me. Is my syntax correct? is the feature currently broken? -
Custom crate issue; cannot place items back into it
Talyn posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi guys, I'm having an issue with custom crates; players are unable to place weapons, ammo, items, etc back into the box. There is no issue with the default crate load-outs (players are able to dump back into those) they work fine; it just seems to be custom load-outs. Is there a solution? I've tried searching but not found any posts relating to this particular issue. -
Custom crate issue; cannot place items back into it
Talyn replied to Talyn's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Ahhhhh, that makes sense, thank you! It would be handy if there was a weight/capacity status bar. -
I'd also like to extend my thanks to kylania - this script will prove most useful! On a side note, is it possible to position the text elsewhere on the screen (e.g. bottom left)?
-
MP JIP players spawning mid air above LHD
Talyn posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I'm trying to construct a mission that involves the players starting on-board the LHD. The initial spawning isn't a problem using the below command in the initialisation field of the playable characters. this setPos [getPos this select 0,getPos this select 1,15.9]; However, any player that joins whilst the game is in progress, for whatever reason, spawns around 30ft in the air above where they're supposed to, generally resulting in broken legs or death. The mission uses ArMaTeC's LDH spawner and norrin's revive scripts. Has anyone experienced similar issues or would know how to get around this problem? -
That would make for a nice Christmas present. :inlove:
-
2 seperate respawns for same team?
Talyn replied to Brooklyn718's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Apologies for hijacking the thread but I'm attempting to do a similar thing for one of my missions. I want some players able to re-spawn into their group when they die, thus they have so many lives till final death. Re-spawn option 4 in the Description.ext. The mission also has a few pilot slots, I want these players to simply re-spawn at base. Basically I want my mission to play out in a similar fashion to the co-op version of the campaign in OA but I've tried dissecting the missions but unfortunately that leads me to a respawnfunction that limits the host to a singular character. :j: Any suggestions/help? -
Domination ports by Bsilenced
Talyn replied to {Op4}Bsilenced's topic in ARMA 2 & OA - USER MISSIONS
I think an East (Russian) version using ACE 2 would be a nice change. Like others have suggested. But great work with the missions, been having a lot of fun with them thus far. :icon_smile: -
RH Hk416 Pack ver 1.0
Talyn replied to roberthammer's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
A BIG thank you! For placing a variant of the Tar21 in game. The weapon has been sorely missed since the days of Ravenshield. :dance1: -
Very nice, makes the night fighting that much more spectacular.
-
Example scripts that use the attachTo command
Talyn replied to norrin's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
It's an issue with the script not being dedicated server friendly. If anyone could make the adjustments so that this works in MP I for one would be grateful! :239::notworthy: -
ANNOUNCE: PVP script pack released
Talyn replied to sbsmac's topic in ARMA 2 & OA : Community Made Utilities
Good job with the pack. Definitely makes for quick and effortless pvp mission making! :) -
LHD (Aircraft Carrier) spawning script
Talyn replied to armatech's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I encountered the same issue when creating a simple mission for MP. Fortunately, I found a solution that works for players spawning and re-spawning on-deck and aircraft remaining stable. Unfortunately, it's still hit or miss if the AI end up in the middle of a bulkhead. First of all, place an invisible landing pad named: LHD_Center In the init of that unit place: this setPosASL [getposASL this select 0, getposASL this select 1, 0]; res=[this]execVM"CreateLHD.sqf" Then finally modify the CreateLHD.sqf so it's like this: if (isServer) then { _LHDspawn = _this select 0; _LHDdir = 270; _LHDspawnpoint = [getposasl LHD_Center select 0, getposasl LHD_Center select 1, 0]; _parts = [ "Land_LHD_house_1", "Land_LHD_house_2", "Land_LHD_elev_R", "Land_LHD_1", "Land_LHD_2", "Land_LHD_3", "Land_LHD_4", "Land_LHD_5", "Land_LHD_6" ]; { _dummy = _x createvehicle _LHDspawnpoint; _dummy setdir _LHDdir; _dummy setpos _LHDspawnpoint; } foreach _parts; }; Credits go to Alexei Vostrikov for his implementation of the LHD in Carrier Domination. -
LHD (Aircraft Carrier) spawning script
Talyn replied to armatech's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Don't suppose you could tell us how you made it server-side only so that clients don't require the addon? Nevermind, it's simply a case of adding. [color="Red"]if (isServer) then {[/color] _LHDspawn = _this select 0; _LHDdir = getdir _LHDspawn; _LHDspawnpoint = [getposasl _LHDspawn select 0, getposasl _LHDspawn select 1, 0]; deletevehicle _LHDspawn; _parts = [ "Land_LHD_house_1", "Land_LHD_house_2", "Land_LHD_elev_R", "Land_LHD_1", "Land_LHD_2", "Land_LHD_3", "Land_LHD_4", "Land_LHD_5", "Land_LHD_6" ]; { _dummy = _x createvehicle _LHDspawnpoint; _dummy setdir _LHDdir; _dummy setpos _LHDspawnpoint; } foreach _parts; }; Thanks for the scripts! :bounce3: -
Getting errors trying to install the patch
Talyn replied to Motivator's topic in ARMA 2 & OA - TROUBLESHOOTING
After recently formatting and starting from step one I still encounter: error xdelta3 returned error code: 1 However, simply ignoring the error still completed the patch install. If I encounter any issues I'll let you guys know. //--------Edit Turns out that errors flag up every now and then in regards to files patched. =/ -
ArmA II & OA Photography I - No images over 100kb - Pictures only NO comments.
Talyn replied to Placebo's topic in ARMA 2 & OA - GENERAL
One piece -
Getting errors trying to install the patch
Talyn replied to Motivator's topic in ARMA 2 & OA - TROUBLESHOOTING
Getting the following error: I had this problem with the first patch however I have another PC which I can install to which enables me to simply copy over the files, which should work again. However, I'd rather have the ability to install without these issues cropping up every time there is a patch. :( -
ArmA II & OA Photography I - No images over 100kb - Pictures only NO comments.
Talyn replied to Placebo's topic in ARMA 2 & OA - GENERAL
One piece