Jump to content

Bart.Jan

Member
  • Content Count

    739
  • Joined

  • Last visited

  • Medals

Everything posted by Bart.Jan

  1. Bart.Jan

    Macros in functions

    Thanks for the tip, but there is nothing about macros. I found nothing about macros in tutorials and in any function there.
  2. Bart.Jan

    Set view distance?

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> setviewdistance 500 <span id='postcolor'> Put it to init line of any unit on the map.
  3. Bart.Jan

    Propaganda doesn`t change at all

    United States of America : The World's Foremost Nation of War Just interesting reading. Is it something that some nation can be proud of or is it anti-US propaganda ?
  4. Bart.Jan

    Add a seagull...

    Create a seagul : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> _sg = "seagull" camCreate [x,y,z] <span id='postcolor'> Make a seagul to move : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> _sg camSetPos [x,y,z] <span id='postcolor'> Make a seagul to land : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> _sg camCommand "landed" <span id='postcolor'>
  5. Bart.Jan

    How do you make a unit immortal?

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (starstreams @ Mar. 15 2003,16:54)</td></tr><tr><td id="QUOTE">Wow it looks pretty deep man. I’m not even sure what an addEventHandler is? I’m guessing it’s some kind of built in component that requires an Acton or parameters. Either way where did start learning this? I mean is there some kind of tutorial that walks you though all the different Parameters?<span id='postcolor'> I'm sure there are good english scripting tutorials somewhere but I prefer czech tutorials. But generally very useful are : - official comref -Unofficial Operation Flashpoint Command Reference Manual (slightly out of date but still useful)
  6. Bart.Jan

    How do you make a unit immortal?

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (starstreams @ Mar. 14 2003,03:15)</td></tr><tr><td id="QUOTE">I don’t know how you figured that out but I wish I understood the science of scripting. I’m just glad it worked! <span id='postcolor'> It's not so difficult as it looks. It's about knowledge of OFP scripting commands. </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> this addEventHandler ["hit",{{_x setDamage 0} forEach [_this select 0]+crew (_this select 0)}]<span id='postcolor'> Immortal unit -> unit take no damage -> but unit always take damage after hit so unit (tank and its crew) must be healed after hit. after hit -> event handler "hit" -> addEventHandler healed -> setDamage 0 helaing for tank and its crew -> forEach command unit (tank) -> first parameter of event "hit" : _this select 0 crew of tank -> crew command -> crew of tank : crew (_this select 0)
  7. Bart.Jan

    Help

    Or create ending trigger with 0,0 axis activated by nobody and change condition to : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> !alive soldierName <span id='postcolor'>
  8. Bart.Jan

    How do you make a unit immortal?

    You can use event handler. Just make sure tanks are in "combat" behaviour. Put in init field of each tank : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE">this addEventHandler ["hit",{{_x setDamage 0} forEach [_this select 0]+crew (_this select 0)}]<span id='postcolor'>
  9. Bart.Jan

    Hmmmm help

    It looks like problem with script calling. It shoud be something like : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> [player,triggerName] exec "scriptName.sqs" <span id='postcolor'> and I think you doesn't understand format yet. Even your example works. It shoud be : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> titleText[FORMAT["%1: wins THA RACE", name _player], "PLAIN"]<span id='postcolor'> In commas " Â " is text that will be dislpayed. %1, %2 ... are substitutes that will be replaced by code after "" %1 takes first thing after "" - that is name _player in your example. And semi-colon ; is not needed at the end of each script line. Maybe it can be the problem.
  10. Bart.Jan

    Respawning vehicles

    Oops. I should read whole thread more thoroughly. Sorry. It was just little late night scripting inspiration.
  11. Bart.Jan

    Ofp roadsigns

    I do not need travel a lot to tour Davle with its bridge. Another pictures of czech Davle : www.davle.cz Another picture of Davle's bridge : http://www.davle.cz/foto/most_n/004.jpg
  12. Open stringtable.csv file from OperationFlashpoint\Res\Bin folder. Find string STR_NO_ACTION. From that point there are list of possible actions. Mostly action name is string without first STR_ACTION_ . But there is no list with parameters I know about. Â These strings are also listed in Unofficial Operation Flashpoint Command Reference Manual but without parameters.
  13. Bart.Jan

    Forum word-censoring

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (Grendelman @ Mar. 05 2003,18:41)</td></tr><tr><td id="QUOTE">Dikke kankerzooi man, dit is godverdomme toch niet normaal meer. Dat een kutforum als deze hoerezooi dit gewoon toelaat?<span id='postcolor'> Board rules : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote </td></tr><tr><td id="QUOTE">3.Rules of Format §7)Write in English In the English part of the board write in English and in the Czech write in Czech. Try avoiding writing in any other language since the majority of the members most likely won't understand it.<span id='postcolor'> Give me a translation !
  14. Bart.Jan

    Some questions regarding

    Put whole script code into text file. Name that file "way.sqs" and put it into your mission folder OperationFlashpoint\Users\yourUserName\missionName\ Then, in mission editor, put : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> [] exec "way.sqs" <span id='postcolor'> into init line of any unit.
  15. Bart.Jan

    2 questions

    If you want to remove action from unit after first use you can use : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> (_this select 0) removeAction (_this select 2) <span id='postcolor'> in that action script.
  16. Bart.Jan

    Some questions regarding

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (IceFire @ Mar. 04 2003,03:41)</td></tr><tr><td id="QUOTE">But before I do, a few questions/comments to be sure about. The singular unit, and squads will all be western. Â Be careful because there are several Russian squads patrolling. Â I don't want him to join a Russian squad.<span id='postcolor'> In script all grpA,grpB..D are western groups. Script controls knowsabout between singular unit and leaders of A-D groups. If they meet (knowsAbout>=3) themselves then meeted sqad moves near to singular unit and then sing.unit joins them. After joining variable gotcha becames true. (It became true even if sing.unit reaches "Location A" alone). gotcha activates trigger(type switch) and it switch all synchronized wps to last wps (synchronized with last but one)-> and these are in "Location A" I presume all russian sqads are trying to kill sing. unit and not to capture it. The last question is answered by JAP.
  17. Bart.Jan

    Some questions regarding

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (IceFire @ Mar. 03 2003,02:16)</td></tr><tr><td id="QUOTE">2) A singular western unit will be running in a direction. Â Other squads will be moving in a direction(or just standing static) that may cross paths with the first singular western unit. If for example "squad A" encounters the singular unit, the squad A leader will "join and lead" the singular unit, and then they will all move to a specific location on the map called "Location A". Â If the singular unit, and "squad A" do NOT encounter eachother, the singular unit will continue to move on to "Location A". and "squad A" will move to another location, and then continue on to "Location A". There are OTHER squads around. Â If "squad B" encounters "singular western unit", the squad will take command of singular unit, and then proceed to "Location A" just as "squad A" would. There will also be squad C and D. Â All the same thing. If any squad does enounter and "joins and leads" singular unit. Â All other squads immediately change course or start moving on to "Location A". If singular western unit makes it to "Location A" alone, all other squads will immediately start to move to "Location A" as soon as "singular western unit" gets to "Location A". Is this possible? What would I have to do?<span id='postcolor'> For all squads (A,B,C,D) make plain "move" wps (no "join and lead" wps). If you don't use "cycle" wp then use as the last wp "hold position". Then make another "move" wp (so cycle or hold pos. will not be the last one) and place it in "Location A". For singular(?) unit you need only one "move" wp in "Location A" and put into on activation line of this wp : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE">gotcha=true<span id='postcolor'> Then make script : _s is name of your singular unit (for example : _s=player) grpA,grpB,grpC,grpD are names of groups(squads) A,B,C,D (you can have any number of squads - but you must have corect wps for all of them) </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> _s = singularUnit _groups=[grpA,grpB,grpC,grpD] _i=count _groups gotcha=false #again ~0.2 _i=_i-1 _grp=_groups select _i _ldr=leader _grp ?((_ldr knowsAbout _s)>=3) or (_s knowsAbout _ldr)>=3)) : goto "located" ?_i==0:_i=count _groups ?!(alive _s) or gotcha:exit goto "again" #located _ldr=leader _grp _ldr move position _s ~0.2 ?!(alive _s) or gotcha:exit ?(_ldr distance _s)>15:goto "located" [_s] join _ldr gotcha=true exit <span id='postcolor'> then make trigger : axis 0,0; activated once by nobody; type - switch condition : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE">gotcha<span id='postcolor'> and synchronize it with all the last but one wps of all squads ("cycle" or "hold position" wps) It should work.
  18. Bart.Jan

    Addaction question

    No, but you can use : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> ?(_this select 0) != (_this select 1):exit <span id='postcolor'> as first line of action script. Script ends when action is not used by its owner.
  19. Change creating line in script to : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> "civilian6" createunit [getpos _pos,_grp,"this addMagazine ""cz75mag"";this addWeapon ""cz75""",1,"PRIVATE"] <span id='postcolor'> Civilian is created with loaded CZ75.
  20. Bart.Jan

    Delete people

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE">{deleteVehicle _x} foreach thislist<span id='postcolor'>
  21. Bart.Jan

    Overview pic problems

    Allowed sizes of picture are : 2, 4, 8, 16, 32, 64, 128, 256 ... (2^n) 170x64 - change dimension of your picture.
  22. Bart.Jan

    Fun missions

    </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (iNeo @ Feb. 26 2003,02:11)</td></tr><tr><td id="QUOTE">Armagedon was cool too, but what did the mission maker actually use for meteors? <span id='postcolor'> Armagedon is from section FUN.
  23. Bart.Jan

    Fun missions

    I would like introduce you 3 missions from Ruprt's fan page It's czech page so I post links that leads you just to download page. On that download page click on name of mission and then another download window pop-up (there is some info about mission in czech). There click on "Stahnout tuto misi" (download this mission) and download begins. There are no ads on that pages. 1) Dark Blue World - Air skirmish with Camel fighter planes by Didymos 2) Klip - very nice music clip (Andre Visor : Dont`Go) by Vojtoo 3) Armagedon - falling meteors - nice visual efect by Didymos You don't need to know czech language for these missions.
  24. </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (OxPecker @ Feb. 25 2003,23:58)</td></tr><tr><td id="QUOTE">Is there a script or command you could use to make MBTs and armored vehicles immune to small arms fire, so you could make realistic tank battles? The way it is now it's possible to take out an Abrams with a PK if you have enough ammo.<span id='postcolor'> And do you have enought time to destroy it with PK ?
  25. Bart.Jan

    Need help with scipt

    I tested it again and it works for me. Go to bartovo.webpark.cz and download zombie.intro.zip It's my working example. Zombie script is activated by Alpha-radio code. Ah, now I can see you managed to run it, but I can not understand your problem.
×