

Kupla
Member-
Content Count
46 -
Joined
-
Last visited
-
Medals
Everything posted by Kupla
-
Will my PC Run this? What CPU/GPU to get? What settings? System Specifications.
Kupla replied to Placebo's topic in ARMA 2 & OA - QUESTIONS & ANSWERS
I think that computer will be able to handle it pretty well. If you look up my current specs (above), I can run Arma 2 with Medium/High settings (no AA) at around 30 fps. -
Will my PC Run this? What CPU/GPU to get? What settings? System Specifications.
Kupla replied to Placebo's topic in ARMA 2 & OA - QUESTIONS & ANSWERS
I'm looking for a new graphics card for my somewhat outdated PC with AMD Phenom 9750 Quad at 2,4 GHz 8GB DDR2 at 800 MHz Windows Vista 64 bit ATI HD4850 1GB Can anyone recommend a video card in the 200-300e range? Oh, and it needs to fit into my 7" wide pc case. Also, what do I need to know when switching the graphics card? How do I make sure the GPU is compatible with my old setup? Thanks -
Hello everyone I have a few questions mainly about sounds in custom missions. Firstly, have all the sound files been listed somewhere, similar to what has been done to weapons and objects in the "Arma 2 classnames" -thread? What I am looking for is a small beep or a radio-like sound to use between sidechat messages with playsoundfile "filename". Another thing, I have some custom sounds in .wav extension and I've heard that they need to be in .ogg for arma 2. Can I just blatantly change the extension from .wav to .ogg or do I need to use some program? When I have my .ogg file what do I have to do next? (A step-by-step guide would be nice) I'm trying to play the files with the sideradio command. And as for my last question, can I set a sidechat message to a leader of the group regardless if the leader has changed during the mission? Because currently if I set a message to "soldier1" and that soldier dies earlier in the mission, the chat will not trigger. I want the chat to be activated as long as there's still one person from the group alive. Thanks in advance, I'm still a bit new when it comes to all this.
-
I somewhat agree though the couple patch have improved it nicely. But don't expect many ppl to agree with you on these forums..
-
Though you must not forget that Xfire is free, fraps is not.
-
It should work but it doesn't. Group respawn kills it. It works perfectly well alone, but as soon as someone joins the server, BAM no tasks on respawn. I've tried nearly everything between the heaven and earth but nothing seems to work, only found a solution which creates double tasks on respawn. I consider the editor and playing your own missions the most appealing part of the game and this is simply preventing me from doing that. I no longer want to create 'taskless' missions as I wish to progress in the editor and tasks are really a 'must have' for every mission. After a month's break from Arma 2, I've come back to look for a solution as I feel like creating missions again. Any ideas are welcome. And btw, don't tell me to try another respawn type, because I don't want people to miraculously respawn to another location, nor playing singleplayer, because there is no point in it. (Who would want to play this game alone?) So please, BIS, fix this in the next patch! Thankyou rant over
-
IMO, the biggest problems with the AI are the "only shoot to kill" -logic and ordering the AI to target/engage an enemy, especially a vehicle. They never seem to make any good decisions when engaging a vehicle (Why won't they use their AT weapons properly?!). Then there's also problems with some waypoints like "HOLD" in the editor...
-
You could try using the attachto command. For example: dogname attachto [carname] Then place the dog to a good position on the map. EDIT: yeah, like DMarkwick said.
-
Tasks not completing in multiplayer?
Kupla posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
In my current mission, tasks work fine in singleplayer but as soon as I move to multiplayer, tasks no longer complete for neither of us. I have following tasks in my briefing: task1 = player createSimpleTask ["Clear the road"]; task1 setSimpleTaskDescription ["All insurgent resistance must be eliminated to guarantee a safe insertion for friendly units.", "Clear the road", "Clear the road"]; task1 = player2 createSimpleTask ["Clear the road"]; task1 setSimpleTaskDescription ["All insurgent resistance must be eliminated to guarantee a safe insertion for friendly units.", "Clear the road", "Clear the road"]; task1 = player3 createSimpleTask ["Clear the road"]; task1 setSimpleTaskDescription ["All insurgent resistance must be eliminated to guarantee a safe insertion for friendly units.", "Clear the road", "Clear the road"]; And the following in a trigger: task1 settaskstate "SUCCEEDED"; hint "The road has been cleared." What's wrong? Also, I wish to thank the community for all the quick replies for my questions, they've helped a lot -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
My solution works perfectly well alone, but when there's another player on the server I get double tasks on respawn. Multiplayer screws a lot of scripts up really, which is weird because why would anyone want to play a mission alone with AI only? But it doesn't matter anymore, I no longer waste my time on creating missions and I just play on some random multiplayer servers every now and then. Too bad, because the editor had so much potential to make this game really awesome. -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I haven't but don't really like the other respawn types in my missions. Maybe I'll find a way some day. -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Maybe it's because I'm trying to find something that works with "respawn = 4". -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Sorry, but it didn't work... :/ atm got this in the briefing.sqf of my test mission: waitUntil { !isNull player }; waitUntil { player == player }; taskExample1 = player createSimpleTask ["taskname"]; taskExample1 setSimpleTaskDescription ["taskmessage", "taskname", "taskname"]; if (triggeractivated tasktrig) then {task1 = player createsimpletask ["tasklol"]}; if (WPcompleted) then {task1 settaskstate "SUCCEEDED"}; -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
So how does this work in practice? -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Yeah on respawn... It worked fine alone, no double tasks or anything. -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I don't know what happened but I got it to work in a new testmission I made. I wrote this into briefing: taskExample1 = player createSimpleTask ["taskname"]; taskExample1 setSimpleTaskDescription ["taskmessage", "taskname", "taskname"]; player addEventHandler ["killed", { [] spawn { waitUntil { alive player }; [] execVM "briefing.sqf"; }; }]; if (triggeractivated tasktrig) then {task1 = player createsimpletask ["tasklol"]}; if (WPcompleted) then {task1 settaskstate "SUCCEEDED"}; As you can see I made a trigger which created a new task, so I had to add extra lines to check whether that trigger has been activated already. EDIT: I'm getting double tasks when there's another person on the server. Still got to fix that -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Is this the only way? I'm about to give up with tasks... -
The patch is ok, though this: doesn't work.... :/
-
Getting 2 points for a kill?
Kupla replied to dale0404's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Yeah, after your first death it works fine -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I mean I started making the mission in editor in 1.02. Just tried it on a brand new test mission, didn't work. Test it yourself with "respawn = 4;" in description.ext. If you get it to work, please tell me -
Another Helicopter Thread.
Kupla replied to derringer's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Another way to do this is to first place a "load" waypoint for the helicopter right next to it, and then synchronize the marker with another group's (group going to board the chopper) "get in" waypoint which is NOT placed on the chopper (place it somewhere near it). After that, create an invisible helipad on the landing zone and place the chopper's unload waypoint right ontop of the helipad. Finally, create a "get out" waypoint for the group boarding it and put it next to the invisible helipad. Synchronize "unload" and "get out". Could've said that a bit clearer meh. -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Nope, doesn't update despite the patch. Are you sure it works with respawn = 4? I started this mission in 1.02 though.. -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Okay, I changed it, thanks for the help. ---------- Post added at 07:03 PM ---------- Previous post was at 05:35 PM ---------- New problem, after the player dies and respawns to another member of the group the tasks don't carry over. That might be because the briefing.sqf file is only executed through the init.sqf... which is in the beginning obviously. How do I fix this? ---------- Post added at 08:25 PM ---------- Previous post was at 07:03 PM ---------- Maybe I have to set the tasks for all group members then, is there some simple command to give all tasks at once or do I have to assign them to everyone individually? -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I checked the trigger and realised that the hint was in a waypoint's on act and the waypoint was synchronized with the trigger. I moved the hint and settaskstate to the trigger's on act, do you think that makes a difference? (can't test it in mp now) -
Tasks not completing in multiplayer?
Kupla replied to Kupla's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Actually, it didn't. It worked in a test mission I made in mp though.