MulleDK19
Member-
Content Count
430 -
Joined
-
Last visited
-
Medals
Everything posted by MulleDK19
-
Morten's ArmA Dialog Designer
MulleDK19 replied to MulleDK19's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
Just to clarify... This doesn't cancel the project. I'm going to start over. And looking at the bright side, I can do some stuff different, that I wanted to, but didn't do, as it would be too much of a hassle at the stage I was at in the project. -
Morten's ArmA Dialog Designer
MulleDK19 replied to MulleDK19's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
No. I was not working off a repository. I had only been working for 4-5 days on it (But like all day each day), and didn't really think of backups. Never had an HDD die on me before. -
An "Exist" variable? Does it exist?
MulleDK19 replied to scajolly's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
The scripting system supports VB's way of escaping quotes... Use "" inside quotes. onMapSingleClick "player setPos getMarkerPos ""marker1"""; -
Morten's ArmA Dialog Designer
MulleDK19 replied to MulleDK19's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
Bad news. My primary harddrive just fried too. And that's where I have all my projects, including the Dialog Designer. So unless the HDD undies, I'll have to start all over... Again... I'll report back soon. -
Unless you have a monster laptop, like the BIS developers, you won't play this game on a laptop. And no matter what graphics card you'd ever be able to throw into your current system, the rest of your laptop is still way too weak.
-
Chopper/aerial taxi script
MulleDK19 replied to norrin's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I do that a lot. And I meant, what's the difference between this, and the transport support available through the SecOp module in the game? -
Ya, not really how it works. Even if you have 24 gB of physical memory, you'd still want a page file. 1.25 times your physical memory is optimal for your page file.
-
Sure Windows is not set to mute the game? Click on the speaker icon in the system tray (Icons by the clock), then click Mixer. Scroll to ARMA 2, and make sure it's not muted, and that the volume is turned up.
-
need help with text on intro
MulleDK19 replied to natethegreat's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Made a quick tutorial for this some time ago, if anyone need an extra hand with it. -
Chopper/aerial taxi script
MulleDK19 replied to norrin's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
And what's the difference between this, and the one that ships with the game? -
Insurgency Stlye scripting help
MulleDK19 replied to USMCWall's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
First of all, you could create the areas you want by placing markers, named "area_X", where X would be an increasing number starting at 1. Then in your init.sqf script, you would create a variable to hold the number of areas. Then make a for-loop from 1 to 1000, to actually count the number of areas by checking the existance of markers by concatenating "area_" and the current iterator-number. If the marker exists, you increase the variable that holds the total number of areas. If the area doesn't exist, you break the loop. BRB, gonna continue this post on my phone. Takes too fucking long with a PlayStation 3 controller xD -
Morten's ArmA Dialog Designer
MulleDK19 replied to MulleDK19's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
Ya, well... I have some huge expectations for the new tool... I just wish I had a graphics card, as that sure would speed up the process. -
Sending Helicopter group to specific helipads
MulleDK19 replied to polygonpusher's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Just wrote a small script. My GFX card is fried, so I haven't tested it. It's just off the top of my head. No idea if it'll work. It basically makes the three choppers fly to each their landing spot, and when a chopper is ready it's ordered to land. Btw, the land command doesn't take a helipad to land on as parameter, but rather how to land. The parameter can be "LAND", "GET IN", "GET OUT" or "NONE". I use "LAND" as it will make the pilot turn off the engine. AI units lands on the closest helipad object within 500 meters, so I figured, by making them first move to the one they should land on, they must choose that specific one for their landing. Don't know whether or not this is sufficient, but let me know. H1 doMove (getPos L1); H2 doMove (getPos L2); H3 doMove (getPos L3); sleep 1; _choppersToWaitFor = 3; while {_waitForChoppers > 0} { if (unitReady H1) then { H1 land "LAND"; _choppersToWaitFor = _choppersToWaitFor - 1; }; if (unitReady H2) then { H2 land "LAND"; _choppersToWaitFor = _choppersToWaitFor - 1; }; if (unitReady H3) then { H3 land "LAND"; _choppersToWaitFor = _choppersToWaitFor - 1; }; sleep 0.1; //Don't freeze the game }; hint "All choppers are now landing"; -
Morten's ArmA Dialog Designer
MulleDK19 replied to MulleDK19's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
-
Morten's ArmA Dialog Designer
MulleDK19 replied to MulleDK19's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
Hello everyone. Sorry, that I just kinda vanished... Had some... issues with real life, that I'm still trying to get around. But let me give you some information on the tool, and the future of it. About a week ago, I had just reinstalled ARMA 2 and ARMA 2: OA, and bought the new BAF dlc, as I was eager to play again. Then a few days later, my graphics card started artifacting, and then a couple of days ago, it shut down completely. It's now officially dead, and I have no way to play, until I buy a new one. Fortunately, it still works without drivers, but obviously, I'm limited to simple stuff (As in, things that does not involve OpenGL, DirectX or other APIs of the sorts). And I then got to think of my tool, and actually started working on some ideas on how I could continue work, or making it better. So, today, I started completely over, and the new version is promising. It should allow advanced editing, while still being extremely user-friendly. On a side node, the moving and resizing of controls is being improved heavily. Until I get a new graphics card, I'll try to work more on this tool, as I don't really have much else to do, other than watch YouTube videos and some other side projects. I will release a version of the old tool without an expiration date, as soon as possible. Most likely within the next 30 minutes of this posting. Edit: Done. Just download v0.0.0.8 again. It's the same version number, but the expiration date has been moved to the year 2050... Should give you enough time till I get the new tool out :P -
Removing dead bodies from vehicle
MulleDK19 replied to TRexian's topic in ARMA 2 & OA - USER MISSIONS
What about extracting the First Aid modules and take a look at how they handle the pulling out, of injured soldiers in vehicles, then make a custom module? -
ArmA II focusing too much on realism?
MulleDK19 replied to Cookieeater's topic in ARMA 2 & OA - GENERAL
That's what ARMA 2 is. A SIMULATOR. It's like a lite version of the VBS products. -
(steam)Maximum number of "@mod"s in target line, or in .cmd CO file?
MulleDK19 replied to WingmanSR's topic in ARMA 2 & OA - GENERAL
Maybe this'll help you? http://www.sierrasoftworks.com/arma2ml -
Great. Temporarily disabling my anti-virus fixed it. Thanks... :bounce3: Edit: But now I can only use BAF units xD If I try to use any other unit, I get this error:
-
Yes. I have everything. Edit: Anyway, I'll try to install it manually, as I can simply follow the setup.dat file. Edit: Nope. I can't... If I just copy BAF to the game's folder, I get a decryption error when launching the game. -.- HELP!
-
New conversation system how-to
MulleDK19 replied to Jezuro's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
This is working great for me. But there are some words (That I really really need), that I can't make the unit say :/ This is not my real sentence, lol, but it works, except "sniper" is not spoken. In fact, any vehicle is not spoken. I can use SniperRifle, etc., but not vehicles... Does vehicle words have postfixes or prefixes? Like vehiclesniper or unitsniper, or something? -
How to get a chopper to unload troops
MulleDK19 replied to JohnRobertvh's topic in OFP : MISSION EDITING & SCRIPTING
Wait, what?!? Since when... -
RADIO TRIGGER TYPE... THISLIST RETURN NOTHING??!!
MulleDK19 replied to hlq2action's topic in OFP : MISSION EDITING & SCRIPTING
Has this been improved in ARMA 2 / Operation Arrowhead? I really need the specific unit that called this. -
How do I execute a function from radio trigger?
MulleDK19 replied to Bloodofthedragon's topic in ARMA 2 & OA : ADDONS - Configs & Scripting
Simply Script_Handler = carname execVM "myscript.sqf"; will do. No need to put it in an array. -
A trigger to kill ALL units and groups
MulleDK19 replied to Katrician's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
You can also place this in the Initialization field of any unit: This will kill everything: {_x setDamage 1;} forEach allUnits; Don't wanna kill the player? {if(_x != player) then {_x setDamage 1;};} forEach allUnits; Only within certain range (and not player)? {if(_x != player && getPos _x distance getMarkerPos "someMarker" < 2000) then {_x setDamage 1;};} forEach allUnits; (Create a marker called someMarker, replace 2000 with the range in meters).