Jump to content
  • Topics

  • Posts

    • OSTER777  merupakan game online yang terbaru dengan permainan terlengkap yang telah diupdate dengan sistem terbaik sehingga para pemain dapat bermain di situs Oster777 dengan nyaman.   Dengan bermain di OSTER777 anda tidak perlu Ragu jika menang berapapun tetap pihak Oster777 akan membayar kemenangan para member tercinta, dengan keunggulan menarik dari  Oster777  adalah berani memberikan kemenangan dan membayar kemenangan para pemain togel dari hiburan hadiah 1 sampai dengan hiburan hadiah 10 berlaku dii 2D , 3D dan 4D   Tidak banyak yang berani memberikan kemenangan hingga 10 hadiah, di Asia hanya Oster777 menjadi satu satunya agen online yang berani memberikan kemenangan terbesar di togel, slot, live casino, poker, tembak ikan dan sportbook.   Nama :  Oster777 Min Depo : 10000,- Min Lebar : 50.000,   ~ Tersedia Permainan : Togel, Slot, Kasino, Tembak Ikan, Sabung Ayam, Virtual & Sportbook. ~ Dukungan dengan Sistem : Aplikasi, Browser, Mobile, Desktop, dan Wap Aktif melayani : 24 Jam   ~ Dukungan Transaksi : Bca, Mandiri, Bri, Bni, Danamon, Cimb Niaga, Apk DANA, Ovo, Gopay, dan Linkaja. ~ Pembayaran Qris 3 Detik ~ Akses Mudah dengan Link Alternatif , Link Cadangan , Link Anti Nawala, Link Support. ~ Nikmati promo & bonus menarik setiap hari ~ hadiah togel yang dibayar secara otomatis tanpa harus klaim ~ sistem bermain yang mudah dan praktis ~ transaksi deposit maupun penarikan tercepat ~ bermain aman , nyaman dan nikmati pelayanan 24jam
    • Good question. I’m also interested in the answer. That’s why I want to share information about the price with my friends  https://j4l.com/  is an exceptional online dating platform that goes beyond the norm to create a genuine and enriching experience for its users. With a focus on building meaningful connections and fostering long-lasting relationships, J4L stands out as a beacon of authenticity in the digital dating world. The website's intuitive design, diverse features, and commitment to user safety make it a trusted choice for singles looking for love and companionship. Whether you're seeking a soulmate, a friend, or simply expanding your social circle, J4L offers a welcoming and inclusive space where genuine connections can flourish. Join J4L today and open the door to new possibilities in your romantic journey.
    • Im trying to brainstorm a spawn script but I’m running into some issues when it comes to locating a spawn position.  I’m trying to accomplish two things: 1) find a “safe” spawn position (ie don’t spawn tanks on top of a building) via BIS_fnc_findSafePos and 2) make sure the player does not see the spawn positions via checkvisibility.   However, I don’t know how to structure the script so it will continue to search for a spawn position if it cant find one on the initial search.   This is what I’m thinking:
         
    • Hi, I cannot find what command to use to make an attack heli to face certain position while flying with "SAD" waypoint. I spawn it and add waypoints with this   /* _mrk is the flag marker, string _heli is the attack helicopter className, string _arrival is the time from zone activation to spawning the attack heli, integer _force is how many attack helicopter will come one after another, integer */ params ["_mrk", "_heli","_arrival","_force"]; for "_i" from 0 to _force do { sleep _arrival; deleteVehicle attackHeli; {deleteVehicle _x} forEach units attackHeliGRP; _atkHeliPos = [[[(getMarkerPos _mrk),4000]], [[(getMarkerPos _mrk),3000]]] call BIS_fnc_randomPos; _attackPosA = [[[(getMarkerPos _mrk),400]], []] call BIS_fnc_randomPos; _attackPosA set [2, 200]; _attackPosB = [[[(getMarkerPos _mrk),400]], []] call BIS_fnc_randomPos; _attackPosB set [2, 200]; _attackPosC = [[[(getMarkerPos _mrk),400]], []] call BIS_fnc_randomPos; _attackPosC set [2, 200]; private _delPos = [[[(getMarkerPos _mrk),4000]], [[(getMarkerPos _mrk),3000]]] call BIS_fnc_randomPos; _delPos set [2, 200]; attackHeliGRP = createGroup [west, true]; attackHeli = createVehicle [_heli, _atkHeliPos, [], 0, "FLY"]; attackHeliGRP createVehicleCrew attackHeli; attackHeliGRP setBehaviourStrong "COMBAT"; attackHeli flyInHeight 200; attackHeli limitSpeed 100; private _wp1 = attackHeliGRP addWaypoint [_attackPosA, 0]; _wp1 setWaypointType "SAD"; _wp1 setWaypointTimeout [60, 120, 60]; private _wp2 = attackHeliGRP addWaypoint [_attackPosB, 0]; _wp2 setWaypointType "SAD"; _wp2 setWaypointTimeout [60, 120, 60]; private _wp3 = attackHeliGRP addWaypoint [_attackPosC, 0]; _wp3 setWaypointType "SAD"; _wp3 setWaypointTimeout [60, 120, 60]; private _wp3 = attackHeliGRP addWaypoint [_delPos, 0]; _wp3 setWaypointType "MOVE"; _wp3 setWaypointStatements ["true", "deleteVehicleCrew attackHeli; deleteVehicle attackHeli; deleteGroup attackHeliGRP;"]; sleep _arrival; }; All I want is when the AH64 wait for the next waypoint to face the position it has to defend so the gunner can search for infantry targets, etc.     
×