Jump to content

Chris Death

Member
  • Content Count

    1864
  • Joined

  • Last visited

  • Medals

Everything posted by Chris Death

  1. By "never mind" i guess he meant he posted something that has already been said in this thread or that he came to the conclusion that what he originally posted didn't make sense, so he did overwrite the already existing post with the "never mind" thingy. At least that's the way i've seen ppl doing in posts. ;) ~S~ CD
  2. In an Intro or Outro you can only move your head as player (at least in OFP it was like that). You have to select that from the pull down options where there usually is set on Mission. In OFP an intro or outro did only work in singleplayer not in multiplayer - in mp you had to do them from inside the mission itself. ;) ~S~ CD
  3. Does that also happen when you're using global variables (booloeans) like: aaa bbb instead of local ones? I think when using it in a trigger's condition field with global variables and undefined variable has been always seen as false by the game iirc. ~S~ CD
  4. You can use something like: helicoptername flyinheight 0 or if that doesn't work 0.2 - dunno you have to play around with the height if 0 causes problems. Just make sure not to put the command into the same waypoint with the land command since it could make the chopper go directly from anywhere to zero thus crash it. ~S~ CD
  5. Try the guard waypoint instead of the s/d. S/D will make a unit search for a while and stop after that or go on to it's next waypoint while guard will make them go to where the enemy is known to be. If one enemy unit knows about you, those enemies with guard waypoint will go for you. ;) ~S~ CD
  6. If the geo-lod wouldn't exist when the object isn't loaded into the memory that would explaine it. As a workaround you could try to start the mission with a quick blacked out screen at that location showing that object - i do believe it would still be loaded into mem even when blacked out. Then start with black in at players position a 0.5 secs later or so. ~S~ CD
  7. And off course same can be done with bluefor or opfor - joint them to a higher ranked civilian with a probability of presence 0 and they will be on side: civilian, so you can make them friends to eachother - i'd recommend using rebel side instead of civilian so you can make them enemy to another side too. The same technique you could use to turn rebels into bluefor or opfor. ;) ~S~ CD
  8. huh - yeah there is that other Flashpoint too XD Tanks for correcting me on the "" W0lle didn't encounter that change yet since there's still so much to explore in ArmA2. Glad to see you solved that problem Aodan :) ~S~ CD
  9. I don't quite understand what you mean with " in "alive _x". Looke there's more ways to check wether a couple of units is alive or not. Here are a two of them; Condition: !alive T1 && !alive T2 && !alive T3 :now this way can afford a lot of unnecessary code being repeated in case of more units Condition: "alive _x" count [T1,T2,T3] == 0 :this condition checks if the result of counting the units inside the mentioned array ([T1,T2,T3]) who are alive, is 0. This is totally the other way around then asking for 'not alive' but it requires way less code to type. :edit - never mind - i figured out what confused you ;) into: "alive _x" count [T1,T2] == 0 That should off course be only: "alive _x" count [T1,T2] == 0 :) ~S~ CD
  10. Actually i'm comming from Flashpoint and am just starting my way back in with ArmA 2 (skipped ArmA 1 after a month or two trying to like it) so you might have only met the wrong people at the wrong time. ;) ~S~ CD
  11. First: a condition like: !(alive T1) && !(alive T2) && etc. has to go into the condition field of a trigger (or waypoint). Second: Are you sure there is only one thing named T1? Or did you probably use T1 = false (or true) somewhere else or did you put 'T1' or so into a condition field of another trigger? The error message says that there is a boolean which is some kind of condition that you can turn on or off by making it true or false. So then the message tells you that !(alive 'a boolean') is more than expected. Therefore i do believe that you somewhere in your mission used one of the T1 T2 etc. names already and thus the error appears. If you can't find out try a simple test mission to get that part done seperately so you can concentrate your effort only onto that one. Start with one unit to get destroyed, name it: T1 create a trigger: size 0/0 - condition: !alive T1 onActivation: hint "horray he's got doomed" Now start preview, kill that unit and watch the hint text appear. Go back to editor, add a second unit, name it T2 and change the condition of the trigger from: !alive T1 into: "alive _x" count [T1,T2] == 0 And if you want to add more units just go on by naming them correctly and adding them into the array in the trigger's condition field: into: "alive _x" count [T1,T2,etc,etc] == 0 Now if that doesn't work for you too i can only guess your trying to use this for something like a static object instead of a unit. ~S~ CD
  12. hmm - as a last possible solution you could try to see what happens if you do not move at all before sending them to a spot but i doubt it will work and even if, it wouldn't be an acceptable solution. The only work around that comes into my mind now would be to ungroup those guys who should do their seperate patrol and to rejoin them into the group when needed. For the 'close up into formation - hurry hurry' problem i can't think of any possible solution at this point - though i haven't had too much Arma2 experience but OFP, so maybe there's something new to get deeper into AI's movement control. I'm going to read myself into the latest comref to see if there's something that could help out here. ;) ~S~ CD
  13. Well the careless variant just came into my mind as a possible solution (without being able to try it out) but this doesn't seem to work aswell. How is the ai reacting, when you are groupleader and dbl-shift into walk mode before you start moving (also let your weapon unraised to make sure your behaviour remains "safe")? ~S~ CD
  14. Speedmode limited will not make them walk slower but will make the group wait at a waypoint until all groupmembers have closed up into the formation before the whole group heads on to it's next waypoint. ~S~ CD
  15. If you want to use a trigger to display something like a hint then no need to have a condition for anything. Simply change the condition from THIS to TRUE and the trigger will get activated right from the start. Off course, if you want the hint to be displayed after someone specific has entered a certain area, then forget about that TRUE thingy. ;) ~S~ CD
  16. When you are in command of a group the group will react to your movement. Even if you place a waypoint to turn your group into default safe mode, they will change their behaviour when their leader does. Try it out by starting in safe behaviour mode and then get down to the ground as leader. Your group will not stay with weapons on back but react on your movement and pull out their guns to follow up into their leader's behaviour. I believe they already change their behaviour when you are only change your weapon into aim mode aswell. Also in safe mode they will try to close up to their leader same as in every other behavour. So whenever you see them running behind you, they are only trying to reach their expected position in the formation. This happens often because of the pathfinding since the ai is still not as free in movement as you (the player). :edit - and by reading a problem in another thread i figured out why they will never be in some slow walking mode whenever you are the groupleader. The player does never start in slow walk mode so they will always be ready for some jogging moves. ;) Try it out in "careless" mode because since you are the leader, you can always change their behaviour into something else, when required. And to turn them back into careless you could use addAction or a radio trigger. ;) ~S~ CD
  17. set fuel has to be one word: setfuel so COBRA1 setfuel 0 ~S~ CD
  18. Chris Death

    High command bug

    What Beagle meant is: Press F2 (groups) and drag a line from the "synced" unit you just placed into nowhere. This will ungroup the unit from the other one. ;) ~S~ CD
  19. Chris Death

    artillery

    Come on - stop joking - i can't find the "much more readable" difference between the first and the second post in that thread. The first post contained one error because of some kind'a slang (no/know) and another one which has obviously been a typo since he wrote it correct the first time. Now the second post contained a real grammar error but tries to point the op to pay attention TO his own grammar. I start remembering why i had to take a break here short after ArmA1's release - are you guys still expecting that each poster has got at least 3 doctor titles in 2 different countries? I've been here since almost day one and i can tell you there have been posters who should have had improved their grammar and spelling so that one could have at least figured out in which language he's writing. But Esco's post was definitely readable enough to not point him onto the grammars. Sorry but i couldn't resist on that one ~S~ CD
  20. Chris Death

    artillery

    hmm - english is not my first language but for some reason i can't get rid of that feeling that in your sentence above there's also a "to" missing and a "with" too much. :D ~S~ CD
  21. Chris Death

    Triggers and waypoints

    Follow the link, ceeeb posted above and then click the 3rd link of the first post there: triggers In there look for the SEIZED BY - this could maybe do the trick. ;) ~S~ CD
  22. You should give it a try and ask some addon makers (especially those who are doing vehicles) if there's any way to do what you need. AFAIK it has to do with the model being changed and no way to change that back but i really don't know too much about vehicle configs and also especially not what has changed in ARMA2 since OFP on that. ;) Another try could be over some repair unit/object - if you find a way without the player recognizing it that could maybe work aswell (dunno exactly). ~S~CD
  23. Off course - expect it sometime soon ; ----------------------------------------- Daun schreib i da a glei wo a'n kauft hot ;) ~S~ CD ---------- Post added at 05:42 PM ---------- Previous post was at 05:11 PM ---------- Got him on phone right now here we go: He told me it's the Toshiba Satelite L555-10K and about the grafix card all he can find out is: HD46xx so i guess it's it must be the one below; Core 2 Duo P7450 2x 2.13GHz • 4096MB (2x 2048MB) • 500GB • DVD+/-RW DL • ATI Mobility Radeon HD 4650 1024MB • 3x USB 2.0/Gb LAN/WLAN 802.11bgn/Bluetooth • HDMI • 5in1 Card Reader (SD/MMC/MS/MS Pro/xD) • Webcam • 17.3" WXGA++ glare LED TFT (1600x900) • Windows 7 Home Premium • Li-Ionen-Akku • 3.00kg • 24 Monate Herstellergarantie (bei Registrierung) He bought it at Elektro Haas (Pyramide @ Hagenbrunn/Seyring) Brünnerstrasse behind Floridsdorf ;) I have had a look into the online prospekt from HAAS but it's not listed in there so you might try to call them on phone before to check out if it's still available, in case you don't live close enough to look for yourself. btw - I'm from Vienna aswell (22nd district) ;) ~S~ CD ---------- Post added at 05:49 PM ---------- Previous post was at 05:42 PM ---------- I just called them - hurry up they got one last exemplary left for even only € 760. Phone: 02246 20 000 0 - ask for Michael Gabmayer and he will reserve it for you. ;) And yeah it's the 4650 ;) :edit - they gonna close at 19:00 today ~S~ CD
  24. @Siddhi - a friend of mine bought a toshiba laptop last week and it sounds similar to the one you mentioned. I think he got the same laptop with the only difference of 2 components; He got the 4670 1gb vram - and 6gb of RAM and the price of his laptop was € 800 here in Austria (usually things are cheaper everywhere else than between the Alps). ;) ARMA2 is running on high and above - 1600 x 900 and it's running smooth ~S~ CD
  25. I think CaptainBravo is more looking for something like: "GROUP ALPHA HERE - CONTACT - ENEMY PRESENCE AT XXX/YYY DETECTED - WE'RE READY TO ENGAGE" and not how to reveal detected enemies. Well i think you need to play around with knowsabout and revealing units and then use sidechat and custom sounds (maybe you can take the ones from the game already) to achieve that goal, unless there has been implemented something new which i'm not aware off. ;) ~S~ CD
×