Jump to content

voda22

Member
  • Content Count

    5
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About voda22

  • Rank
    Rookie

Profile Information

  • Gender
    Not Telling
  • Interests
    https://www.youtube.com/watch?v=KCLcIheJUwM
  1. voda22

    Laser Designator Dot

    It's not true, UNN script generate real coordinates, and i'm able to use it like real position array. So many cool scripts on this forum ;p Playing with it is nice exercise ;p
  2. voda22

    Artillery scripting

    Hey Jordans pc im not fully familiar with this topic but i know nice no camcreate artilery/mortar scritp by Doolittle: http://www.ofpec.com/editors-depot/index.php?action=details&id=243&game=OFP here you are. I very like this because it's quite simple and uses projectile motion real phisic. It taught me alot. btw He used telephone as shell ;plol You can change random valutes for scatter. This is onmapclick type artilery but youcan easly convert it to trigger loc.
  3. voda22

    Laser Designator Dot

    Yes i know about arrays I have two triggers on map one is cyclic detection trigger called: LaserList second call radio to exec script and recave hind "dot coordinates" Exec "Script.sqs" list lasername calls up the array of units that currently satisfy a trigger's conditions and sent to script via _List=_This Select 0 command, now trigger is called _list _Target=ObjNull on the other hand is another local variable of non existing object this line (i think) order _target to became lalser coordinates (_Target=_x) for every place inside detection trigger (laserlist). {If ((TypeOf _x)=="LaserTargetW") Then {_Target=_x}} ForEach _List EDIT-ok everyting is working!, nice! (I will leave above part for others) I add mortar SetPos [GetPos _Target Select 0,GetPos _Target Select 1,0] btw: mortar is empty jeep name ;p and it is teleported as intended. I have weird bug with scripts. I don't know whats going on most of them doesn't work at first and then suddenly everything is okay..hm maybe cuz im noob yet. NVM thx for help again Zulu1I wonder where did you get this misson form ;p hehe.
  4. voda22

    Laser Designator Dot

    Wow! I just don't believe i receaved answer, Thanks ;p Do You know if there is any way to use this coordinates with camcreate or setpos? because simple define: object SetPos [GetPos _Target Select 0,GetPos _Target Select 1,0] doesn't work since _Target is ObjNull. Am i right? btw: Maybe late but I'm discovering beautyful world of OFP scripts, and this will help, thanks :) and here is script code if you haven't seen it: (I hope I'm allowed to publish it?;p) ;*********************** ;This Script By UNN V1.0 ;*********************** _List=_This Select 0 _Target=ObjNull {If ((TypeOf _x)=="LaserTargetW") Then {_Target=_x}} ForEach _List If !(IsNull _Target) Then {Hint Format ["Target Pos %1",GetPos _Target]} Else {Hint "No Target Found"}
  5. voda22

    Laser Designator Dot

    Wow that's old topic but i'll try..... Guys (anyone left?:D) do you know any script command to get laser disintegrator dot coordinates? Is there such command? I couldn't find it but this UNN did that-see below: How could i recreate this effect? Links are dead of course...
×