Thread: Nuke Script

Results 1 to 15 of 15
  1. #1
    DRandrix's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    1
    My Mood
    Brooding

    Nuke Script

    Anyone got a nuke script that actually works server side, visual effects, damage, whole nuke shabang?

    ive got one that works client side but its getting annoying only watching the lightshow for myself...

  2. #2
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    I know the rustler menu has one, you might want to talk to him.

  3. #3
    DRandrix's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    1
    My Mood
    Brooding
    Thank you for the tip, do you have any links to help me out getting ahold of him?

  4. #4
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Look for a thread that mentions the rustler menu, his skype is there and leave your skype and he should contact you.

  5. #5
    hangender's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    84
    <--orginal creator of nuke script

  6. #6
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Quote Originally Posted by hangender View Post
    <--orginal creator of nuke script
    If that's actually true, then I <3 you sir.

  7. #7
    Loganater23's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    uranus (originalamirite?)
    Posts
    418
    Reputation
    15
    Thanks
    60
    Quote Originally Posted by hangender View Post
    <--orginal creator of nuke script
    Come on Hangender, you surely can't be the FIRST to make a nuke script... surely someone from way back before DayZ has made one, hell maybe someone from even after DayZ and you coming into play made one...

  8. #8
    TTGRainbowDash's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    9
    Quote Originally Posted by Loganater23 View Post
    Come on Hangender, you surely can't be the FIRST to make a nuke script... surely someone from way back before DayZ has made one, hell maybe someone from even after DayZ and you coming into play made one...
    LK is the only person I know of who's ever made a nuke script. You can get it for ArmA 2, and someone made a local version of it for DayZ, then Rustler & Co. got it working server-side.

  9. #9
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Yes I love the server-side nuke, it looks badass

  10. #10
    hangender's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    84
    Quote Originally Posted by TTGRainbowDash View Post
    LK is the only person I know of who's ever made a nuke script. You can get it for ArmA 2, and someone made a local version of it for DayZ, then Rustler & Co. got it working server-side.
    Yea I made it work server-side because kyle couldn't copy and paste. The code of nuke itself came from Eagle Wings

  11. #11
    hxcrichard's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    2
    My Mood
    Asleep
    uhm i may have one, if its cool ill just copy and paste the script?
    if not, admin erase my post lol

    1 of them think its only a carpet bomb
    _coordinate = [_this select 0, _this select 1];

    _radius=150;
    _Bombs=random 20;



    _jackup=100;

    _Nill = "G_40mm_HE" createvehicle [(_coordinate select 0) , (_coordinate select 1) , 100+random 500];
    for "_i" from 0 to (10+_Bombs) do
    {
    _Nill = "G_40mm_HE" createvehicle [(_coordinate select 0) - random _radius , (_coordinate select 1) - random _radius, _jackup+random 500];
    _Nill = "G_40mm_HE" createvehicle [(_coordinate select 0) + random _radius , (_coordinate select 1) + random _radius, 100+random 500];
    _Nill = "G_40mm_HE" createvehicle [(_coordinate select 0) , (_coordinate select 1) , 100+random 500];
    _jackup=_jackup+20;
    };
    hint "Artillery Inbound 1....2....3....FIRE!";


    second carpet bomb
    bombs={
    _pos = [_this select 0, _this select 1, _this select 2];


    _radius=150;
    _Bombs=random 20;
    _jackup=100;

    "G_40mm_HE" createvehiclelocal [(_pos select 0) , (_pos select 1) , 100+random 500];
    "G_40mm_HE" createvehiclelocal [(_pos select 0) , (_pos select 1) , 100+random 500];

    for "_i" from 0 to (10+_Bombs) do
    {
    "G_40mm_HE" createvehiclelocal [(_pos select 0) - random _radius , (_pos select 1) - random _radius, _jackup+random 500];
    "G_40mm_HE" createvehiclelocal [(_pos select 0) + random _radius , (_pos select 1) + random _radius, 100+random 500];
    "G_40mm_HE" createvehiclelocal [(_pos select 0) , (_pos select 1) , 100+random 500];
    "G_40mm_HE" createvehiclelocal [(_pos select 0) - random _radius , (_pos select 1) - random _radius, _jackup+random 500];
    "G_40mm_HE" createvehiclelocal [(_pos select 0) + random _radius , (_pos select 1) + random _radius, 100+random 500];
    "G_40mm_HE" createvehiclelocal [(_pos select 0) , (_pos select 1) , 100+random 500];

    _jackup=_jackup+20;
    };

    hint "CARPETBOMBS INCOMMING \n RUN!";


    onMapSingleClick "";
    openMap [false, false];
    };

    openMap [true, false];
    onMapSingleClick "[_pos select 0, _pos select 1, _pos select 2] call bombs";


    this one nukes tents
    private["i","v","_case","_pos","_tentList","_tentCount","_ tent","_class","_plr"];

    _plr = "";

    _tentList = allMissionObjects "TentStorage";
    _tentCount = count _tentList;

    i = 0;
    for "i" from 0 to _tentCount do
    {
    _tent = _tentList select i;
    _tent setDamage 1;
    };

    nil = [_plr, 11 , TitleText [format['You seem to be here for bad purposes. I must destroy of all your tents.. until you learn!'], 'PLAIN DOWN']] execVM "wuat\scripts\Dwarden.sqf";

  12. #12
    ToniTang's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    United States
    Posts
    53
    Reputation
    10
    Thanks
    10
    My Mood
    Tired
    ^ That's a carpet bomb.

  13. #13
    hxcrichard's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    2
    My Mood
    Asleep
    yea i figured, but still, it lets you carpet bomb wherever your marker is
    and the tent nuke actually sets off nukes wherever tents are

  14. #14
    BladeOfFury's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    5
    My Mood
    Cheeky
    So, where can i learn to script?

  15. #15
    ketchupman's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    bunker
    Posts
    651
    Reputation
    10
    Thanks
    42
    My Mood
    Amazed
    yes but its a paid menu.

Similar Threads

  1. [Request] Need> Fullmap nuke. H> Useful scripts.
    By sinsinx in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 4
    Last Post: 08-07-2012, 08:30 AM
  2. Habbohotel Scripts
    By h0ang in forum General Game Hacking
    Replies: 8
    Last Post: 05-18-2007, 05:19 AM
  3. North Korea & NUKE
    By arunforce in forum Flaming & Rage
    Replies: 9
    Last Post: 10-10-2006, 04:34 PM
  4. Replies: 1
    Last Post: 07-05-2006, 06:20 AM
  5. OMG I SO STUCK!!!(Java Script "n" html problem
    By jeremywilms in forum Programming
    Replies: 11
    Last Post: 06-15-2006, 01:23 PM

Tags for this Thread