Jump to content

Scillion

Member
  • Content Count

    113
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Scillion

  • Rank
    Sergeant
  1. Scillion

    Beta patching - no beta file

    Just to be clear, I don't get a beta folder in my aram2 directory. I thought that was the whole point. :confused: ---------- Post added at 03:27 PM ---------- Previous post was at 03:22 PM ---------- Wow - I now know the problem. Window's 7 (vista also) places an extra Arma2 folder in another location. I was looking in the wrong folder because I needed to get a pbo(ed) mission that I had downloaded by playing a mission on-line. From there I was going up one folder level which was an Arma2 folder. Thx for your help, it got me looking for the folder again. :bounce3:
  2. I run the beta patch and it makes it to the point where it's patching. At about 15% it just finishes and gives me an error that the program may not have installed correctly. This happens with all beta patches. downloaded more than one. I feel it's some setting in my computer. What could it be? I7 processor Windows 7 64 (happened with vista 64 too) 3 gig I'm not using steam I've never used a beta before Looks like I have one of those bugs that only I have. :(
  3. I'm using this to create a light on a tower It works fine but I don't have ready access to our server right now Will this work in coop mode on a server with multiple people playing?
  4. for some more info (including how to put a picture in your briefing) http://www.ofpec.com/forum/index.php?topic=33468.0
  5. Scillion

    Two questions.

    I saw talk about the plane and bombing in other threads. I just used a trigger and the ied script to blow up things as the plane passed over. (I went with easy instead of realistic).
  6. Scillion

    Fence Linking

    If I want a lot of a fence I just go back to a mission design that used it at the right angle and copy a whole bunch for my new mission.
  7. Scillion

    Need a little help

    If you want it to land close to you then move the helicopters waypoint to where you are. Put this in the chopper's init line (the crew and chopper group) <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">flygroup=group this put this in your trigger Onact section <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">[flygroup, 4] setWaypointPosition [position yourname, 0] 4 = 4th waypoint of the chopper Only problem is that if you die then it won't reposition.
  8. Scillion

    setWaypointType "GETIN"/"GETOUT";

    Seems like I read that because you are the leader they wait for you to give the order to get out, and not the script. So you started the game with the squad moveincargo the heli? Then it flies and tries to unload at the waypoint (or transport unload if that doesn't work). If your the leader it kicks you out and waits. If your a follower it kicks everyone out. It expects you to order your men out if your the leader - Thats ok I think - you just hit ~ 4 1. NP - Atleast it's not a problem for me. But if it is a problem then PM me I have an eject script that should throw everyone out. After everyone is out the heli goes to the next waypoint that takes it way out of sight. Ok, you want it to pick you up later. Have a trigger sync for when the town is clear or set your radio for it. Trigger Activation: Radio Alpha and sync it. Now the Heli comes back with a load mission - But wait it doesn't come down so you can get in. Well just order your men into the heli. It comes down and picks everyone up. Maybe you don't like that option. I don't because it looks bad. Well you could make another radio command or trigger with this code in it A trigger could detect the heli and it would fly right down to you. TRIGGER BLUFOR present CONDITION chopper1 in thislist Onact <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">chopper1 flyinheight 0; a=true OK, now sync a trigger with this code to the waypoint Condition <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">({_x in chopper1} count units mygroup == {alive _x} count units mygroup) and a This will check to see that all alive people are in chopper1 Don't forget to put <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> mygroup=group thisin your leaders init field. It takes a lot to do some simple things and thats why it's taken a while to get a responce. Answers to questions like this can be found out there if you search but there are so many threads now that it is becoming harder to do. If you still don't get it PM me and I'll send you a sample mission with a group land then being picked up, but tell me exactly what you want to happen. Good Luck.
  9. Scillion

    Briefing problem

    I must not understand. You mean? <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"><p><a name="OBJ_1"></a><a href="marker:A">Objective A Destroy all enemy units</a> </p><hr> <p><a name="OBJ_2"></a><a href="marker:B">Objective B Destroy all enemy units</a> </p><hr> Edit: OR <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"><p><a name="OBJ_1"></a>Destroy all enemy units<a href="marker:A">Objective A </a> </p><hr> <p><a name="OBJ_2"></a>Destroy all enemy units<a href="marker:B">Objective B </a> </p><hr>
  10. Scillion

    stupid nooby question

    If you make a Waypoint with the getin option (not move) you must put it right on the vehicle, and yes everyone will try to get in. Then you can make waypoints somewhere else and use the getout to have them exit. Then make other waypoints.
  11. Scillion

    Force Eject

    Just found a little script to do that the other day. Paradrop.sqs <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> _heli = _this select 0 _jumper = _this select 1 _aunits=units _jumper _i=0 _j=count _aunits #HERE (_aunits select _i) action["eject",_heli] unassignvehicle (_aunits select _i) _i=_i+1 ~1 ?_j>_i:goto "HERE" exit Put this in a trigger or waypoint's Onact section <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">[Chopper_11, squad_11] exec "paradrop.sqs" Where chopper_11 is the name of the chopper and Squad_11 is the name of the group to exit the chopper.
  12. Try this make your waypoints like this To the Heli To the lsland where they need to take the heli to win To the first waypoint they should follow if the heli is destroyed then the other waypoints that finish it out should the heli be destroyed. Ok - make a trigger in it's condition field put <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> if ((damage heli) > .6) It won't fly after .6 damage or so. Now choose SWITCH for the triggers TYPE section Now snychornize the trigger to the waypoint that would take the heli back to the island. This will cause that waypoint to be skipped. You can also put Hints and other communications in here to tell them there is a change of plans.
  13. Scillion

    small questions

    Problem 1. Maybe try some kind of fade in . Or start the players just out of site of them. If your using a camera just show some out of the way place first, give them time to die. Problem 2. I don't know Problem 3. Name yourself Fred Put this in the init section of the leader of the moving group<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> group1=group this Make a trigger - BLUFOR detected by East. Or whatever you wanted to check for. It can take some time to get the trigger boundries set to detect you right. Try not to overlap trigger boundries if you can. in the OnAct section put<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">[group1, 2] setWaypointPosition [position Fred, 0] The 2 in [group1, 2] is the waypoint number (it may be 1 in your case) Problem 4. Put in init of civilian.<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">removeallweapons this; this addweapon "nameofweapon"; this addmagazine "nameofmagazine";this addmagazine "nameofmagazine";this addmagazine "nameofmagazine";this addmagazine "nameofmagazine"; The name of all the weapons and ammo can be found HERE Problem 5. I haven't looked into the camera deal yet. It was much easier in OFP for simple camer work, it was in the trigger. Sorry
  14. Scillion

    Pls help with my script

    Have you tried this in a trigger. <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> ({_x in heli1} count units mygroup == {alive _x} count units mygroup) LOOK HERE for more info
  15. Scillion

    IED's

    I sent you a PM as I was unable to find the scripts with the search. To many hits as it were.
×