Jump to content

veneratio

Member
  • Content Count

    5
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About veneratio

  • Rank
    Rookie
  1. veneratio

    The 5-Minute Mission Maker

    That was the problem, i missed the nul=["init"] execVM "ups-f.sqf" in the init line for the game logic. Thanks alot mate and thanks for a great script.
  2. veneratio

    The 5-Minute Mission Maker

    Just doublechecked to be sure and tried some other names at the marker and the init line and still the same result.
  3. veneratio

    The 5-Minute Mission Maker

    Hi I treied to add this script to some units but they refuce to move, tried to add the script into the saved mission folder and in a scripts folder in my documents bla bla... and int the init line i type this nul=[this,"Alpha"] execVM "ups-f.sqf" but they wont move, dont know if this have something to do with arma 1.08 patch Thanks in advance /veneratio
  4. Hi I'm kinda new to scripting in arma so i started some easy scripts and one of the things that botherd me moast was that i had to Alt-Tab serveral times to windows to edit the script so came up with the idea that i could share the mission folder in my arma profile so i could reach the scriptfile from my second comp, it worked fine until i runned the script and tried to edit it, when i tried to save the script at my sec comp windows started to complaining about that the file was used by some other program bla bla but i could edit the script on the comp hwo was running arma just fine so i guess its have something to do with windows. So the question is if there are a program i can download or make some settings in windows so i can run arma on one computer and script on the other computer witch is verry useful cause you can play the game while you edit the script and se tha changes verry fast.
  5. veneratio

    Cameras as in OFP?

    Why try to get the possision when you can set some targets at the map, I did a litle intro to my mission and it worked just fine with some "invicible H" and name them like trg and campos. This is what my cam.sqs looked like, maybe not the moast optemized code but it worked. <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">_camx = getpos Campos1 select 0 _camy = getpos Campos1 select 1 _camz = getpos Campos1 select 2 _cam = "camera" camcreate [_camx,_camy,_Camz+300] _cam camsettarget Camtrg1 _cam cameraeffect ["internal","back"] camUseNVG true _cam camcommit 0 _camx2 = getpos Campos2 select 0 _camy2 = getpos Campos2 select 1 _camz2 = getpos Campos2 select 2 _cam camsetpos [_camx2,_camy2,_Camz2+300] _cam camcommit 15 ~1 _cam camsettarget Camtrg2 _cam camcommit 5 ~14 _camx3 = getpos Campos3 select 0 _camy3 = getpos Campos3 select 1 _camz3 = getpos Campos3 select 2 _cam camsetpos [_camx3,_camy3,_Camz3+300] _cam camcommit 15 ~1 _cam camsettarget Camtrg3 _cam camcommit 5 ~5 _cam camsettarget camtrg4 _cam camcommit 5 ~8 endtrg = true exit
×