Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    T0X1Cmods's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Arma3.exe
    Posts
    310
    Reputation
    10
    Thanks
    3,453

    Heli Bus with sirens

    Code:
    TitleText [format["Heli Bus Bitch"], "PLAIN DOWN"];
    _veh = "UH1H_DZ";
    _veh_type=_veh;
    _dir = getdir vehicle player;
    _pos = getPos vehicle player;
    _pos = [(_pos select 0)-5*sin(_dir),(_pos select 1)-5*cos(_dir),0]; // 50 meters behind
    _xos = _pos select 0;
    _yos = _pos select 1;
    _zos = _pos select 2;
    _rid = 999+random(9999);
    _nyan = format["
    if (isServer) then {
     call compile (""heli = create"" + ""Vehicle ['%1', [%2, %3, %4], [], 0, 'CAN_COLLIDE'];  heli setVariable ['OwnerID', 0, true];
     _uid = heli call dayz_objectUID;
     heli setVariable ['ObjectUID', _uid, true];
     heli setVariable ['ObjectID', _uid, true];
     dayz_serverObjectMonitor se"" + ""t [count dayz_serverObjectMonitor, heli];""); 
     
     call compile (""bus1 = create"" + ""Vehicle ['Ikarus', [%2, %3, %4], [], 0, 'CAN_COLLIDE'];  bus1 setVariable ['OwnerID', 0, true];
     _uid = bus1 call dayz_objectUID;
     bus1 setVariable ['ObjectUID', _uid, true];
     bus1 setVariable ['ObjectID', _uid, true];
     dayz_serverObjectMonitor se"" + ""t [count dayz_serverObjectMonitor, bus1];""); 
     
     call compile (""bus2 = create"" + ""Vehicle ['Ikarus', [%2, %3, %4], [], 0, 'CAN_COLLIDE'];  bus2 setVariable ['OwnerID', 0, true];
     _uid = bus2 call dayz_objectUID;
     bus2 setVariable ['ObjectUID', _uid, true];
     bus2 setVariable ['ObjectID', _uid, true];
     dayz_serverObjectMonitor se"" + ""t [count dayz_serverObjectMonitor, bus2];""); 
     
     call compile (""bus3 = create"" + ""Vehicle ['Ikarus', [%2, %3, %4], [], 0, 'CAN_COLLIDE'];  bus3 setVariable ['OwnerID', 0, true];
     _uid = bus3 call dayz_objectUID;
     bus3 setVariable ['ObjectUID', _uid, true];
     bus3 setVariable ['ObjectID', _uid, true];
     dayz_serverObjectMonitor se"" + ""t [count dayz_serverObjectMonitor, bus3];""); 
     
     call compile (""bus4 = create"" + ""Vehicle ['Ikarus', [%2, %3, %4], [], 0, 'CAN_COLLIDE'];  bus4 setVariable ['OwnerID', 0, true];
     _uid = bus4 call dayz_objectUID;
     bus4 setVariable ['ObjectUID', _uid, true];
     bus4 setVariable ['ObjectID', _uid, true];
     dayz_serverObjectMonitor se"" + ""t [count dayz_serverObjectMonitor, bus4];""); 
     
     bus1 attachTo [heli,[2,0,2]]; 
     bus2 attachTo [heli,[-2,0,2]]; 
     bus3 attachTo [heli,[2,0,-2]]; 
     bus4 attachTo [heli,[-2,0,-2]]; 
    
     publicVariable ""heli"";
    
    }
    ", _veh_type, _xos, _yos, _zos, _rid];
    
    
    nilx2 = [_nyan] execVM "scr\exec.sqf";
    
    _nyan = format["
    	[] spawn {
    		waituntil { !isnil(""heli"") };
    		_soundSource = createSoundSource [""Sound_Alarm2"", position heli, [], 0];
    		_soundSource attachto [heli];
    		_soundSource = createSoundSource [""Sound_Alarm"", position heli, [], 0];
    		_soundSource attachto [heli];
    	};
    		_soundSource = createSoundSource [""Sound_Alarm2"", position player, [], 0];
    		_soundSource attachto [player];
    		_soundSource = createSoundSource [""Sound_Alarm"", position player, [], 0];
    		_soundSource attachto [player];
    
    ", _veh_type, _xos, _yos, _zos, _rid];
    
    
    nilx2 = [_nyan] execVM "scr\exec.sqf";
    
    waituntil { !isnil("heli") };
    player moveindriver heli;
    heli = nil;
    __________________________________________________
    Computer Specifications.
    CPU: i7 4770k Haswell 4.6Ghz (Cooled by H100i Push pull (2x NZXT FS 200LED Pull and Noctua NF-F12 Push))
    RAM: Corsair Dominator Platinum 1866 Mhz 16GB 2x 8GB
    Motherboard: ASUS ROG Maximus 6 Hero
    Video Card: Zotac GTX 780

    __________________________________________________



  2. The Following 2 Users Say Thank You to T0X1Cmods For This Useful Post:

    darkangel1 (02-19-2013),furiouswai (02-20-2013)

  3. #2
    Blah121's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Justin Bieber's house
    Posts
    265
    Reputation
    10
    Thanks
    30
    My Mood
    Doh
    Let's try to make this in a server and tell people it's legit.
    [img]https://www.danasof*****m/sig/165704.jpg[/img]

  4. #3
    Hankk's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Canada Eh..
    Posts
    567
    Reputation
    83
    Thanks
    87
    My Mood
    Mellow
    LOL /TooShort

    Herp Derp





    Want.. Moooore... Inturwebz....

    - Obsidian -

  5. #4
    darkangel1's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    San Diego, CA
    Posts
    542
    Reputation
    15
    Thanks
    153
    If there was an RE that didn't show on everyone's screen released publicly I'd try this. BUT UNTIL THEN!
    Want to learn how to customize your own menu's/write your own scripts? Check out my sticky in the help section
    Or click this link -
    https://www.mpgh.net/forum/696-dayz-h...nto-menus.html
    Quote Originally Posted by typh0 View Post
    the only person that can ban you, is the big chief mr battleye himself. no admin or hacker or player can do this. In addition to this the big chief mr battleye will ban you based on the bypasser you're using NOT what scripts you are using.

  6. #5
    Skipsy's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Kamchatka
    Posts
    1,701
    Reputation
    74
    Thanks
    659
    My Mood
    Cynical
    Quote Originally Posted by Blah121 View Post
    Let's try to make this in a server and tell people it's legit.
    With some of the 6 year old admins out there I don't think it would be a hassle.

  7. #6
    Blah121's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Justin Bieber's house
    Posts
    265
    Reputation
    10
    Thanks
    30
    My Mood
    Doh
    Quote Originally Posted by Flopper_01 View Post
    With some of the 6 year old admins out there I don't think it would be a hassle.
    Yes it will be easy.
    [img]https://www.danasof*****m/sig/165704.jpg[/img]

  8. #7
    Mizzle420420's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Korriban
    Posts
    838
    Reputation
    18
    Thanks
    1,096
    My Mood
    Twisted
    lololololol

  9. #8
    Hankk's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Canada Eh..
    Posts
    567
    Reputation
    83
    Thanks
    87
    My Mood
    Mellow
    I'm down to do this..

    Need RE still...


    Herp Derp





    Want.. Moooore... Inturwebz....

    - Obsidian -

  10. #9
    Remember's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Me mums basement
    Posts
    1,426
    Reputation
    31
    Thanks
    290
    Anyone have some fun Screenshots xD?
    "I treat the camera like a person--I gaze into it."

  11. #10
    RYDA94's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    2
    My Mood
    Relaxed
    sounds crazy ^^

  12. #11
    Splexable's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Lithuania
    Posts
    35
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    LOOOOOL :3

  13. #12
    HeliFred's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    4
    Doesnt work with Arma2 Script Executor 1.2d, anyone got a good RE?

  14. #13
    crj58's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    Gonna try this out Thanks.

  15. #14
    Dyla4n's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    1
    My Mood
    Cynical
    i wanna see a picture of this

  16. #15
    crj58's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    I can add a screenshot but I don't know how. Anyone know how?

Page 1 of 2 12 LastLast

Similar Threads

  1. [WTB] HELI-BUS SCRIPT 5.00
    By DEROSIER211 in forum DayZ Selling / Trading / Buying
    Replies: 2
    Last Post: 01-11-2013, 04:02 PM
  2. Problem with heli spawn.
    By gibbss in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 3
    Last Post: 08-19-2012, 02:22 PM
  3. [RELEASE-JM] ImmaNinja555 of JM Presents: Sleeping With Sirens v2
    By Sinsation. in forum Combat Arms Mods & Rez Modding
    Replies: 19
    Last Post: 06-19-2011, 09:39 AM
  4. how to powerlvl with helis???
    By highkiller in forum WarRock - International Hacks
    Replies: 88
    Last Post: 12-27-2007, 02:43 AM
  5. Need help with GunZ
    By Mikkaav in forum Gunz General
    Replies: 9
    Last Post: 02-07-2006, 09:27 PM