Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    kylebeall's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    69
    My Mood
    Bored

    Missile Strike Script [ No RE Needed ]

    Undetected missile strike script, with no remote exec needed.

    Coded today because I was bored.


    Code:
    /*
    
    Rustler Missle Strike
    - Doesn't need a Remote Exec Bypass
    - Undetected (So far)
    - Exploits Whitelisted code, so no createVehicle kick
    
    [ 3/28/13 ]
    
    WARNING: Don't put 1000 for the amount unless you really want
    to fuck up the server
    
    */
    
    Amount = 30; //Number of Missles to drop
    
    Radius = 40; //Radius
    
    russlrmissle = 
    {
    
    	titleText [format["%1 Missles targeting pos [%2x,%3y]\n with a %4m Radius!",amount,round (_pos select 0),round (_pos select 1),RadiusZ],"PLAIN DOWN"];
    	openMap [false, false];
    	[_pos] spawn 
    	{
    		for '_i' from 0 to amount do
    		{
    			_randarray = [-1,1,-1,1,-1,1];
    			_randnegate = (_randarray select (random 5));
    			_randnegate1 = (_randarray select (random 5));
    			
    			_classname = "M_R73_AA";
    			_location = 
    			[
    				((_this select 0 select 0) + ((random Radius) * _randnegate1)), 
    				((_this select 0 select 1) + ((random Radius) * _randnegate)), 
    				(_this select 0 select 2) + 200
    			];
    			
    			_fire = createVehicle [_classname, _location, [], 0, "CAN_COLLIDE"];
    			_fire setvelocity [0,0,0];
    			[_fire,-90,0] call BIS_fnc_setPitchBank;
    			hintsilent format ["Missle #%1 Away!",_i];
    			sleep (random 1.00);
    		};
    	};
    };
    titleText ["Click on map to drop the gifts","PLAIN"]; titlefadeout 3;
    onMapSingleClick "_pos call russlrmissle;";
    openMap [true, false];

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

    huehuehuehuehue (03-28-2013),m3xTa1nes (03-31-2013),Spyke8x (03-28-2013)

  3. #2
    Spyke8x's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    1
    Beautiful work.

    EDIT:=( after short testing still get a createVehicle #15 kick from BE.
    Last edited by Spyke8x; 03-28-2013 at 09:40 PM.

  4. The Following User Says Thank You to Spyke8x For This Useful Post:

    kylebeall (03-28-2013)

  5. #3
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Surprised this one wasn't deleted either.

  6. The Following User Says Thank You to Woodhouse For This Useful Post:

    kylebeall (03-28-2013)

  7. #4
    kylebeall's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    69
    My Mood
    Bored
    Norman gets Rustled too easy

  8. #5
    hangender's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    84
    Clearly this script is advertisement for Missile LLC, a private military contractor

  9. The Following 4 Users Say Thank You to hangender For This Useful Post:

    kylebeall (03-28-2013),Loganater23 (03-28-2013),Spyke8x (03-28-2013),thefit200 (03-28-2013)

  10. #6
    pridesoccer's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    83
    Reputation
    10
    Thanks
    11
    Rustler V5 soon?

  11. #7
    kylebeall's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    69
    My Mood
    Bored
    Nah norman will just whine and delete that too

  12. #8
    BobSagett's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    5
    My Mood
    Amused
    GJ Kyle

  13. #9
    yztzzxga's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Surprised this one wasn't deleted either.

  14. #10
    huehuehuehuehue's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    USA
    Posts
    208
    Reputation
    10
    Thanks
    21
    My Mood
    Bored
    createvehicle restriction kick.
    well thats a key down the drain

  15. #11
    kylebeall's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    69
    My Mood
    Bored
    Quote Originally Posted by huehuehuehuehue View Post
    createvehicle restriction kick.
    well thats a key down the drain
    hmm yeah I think it may only be on servers that allow you to spawn non dayz vehicles such as the a10... I didn't do extensive testing, but I didnt get kicked on the 3 servers I tried it on.

  16. #12
    Plutonsvea's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Australia
    Posts
    1,889
    Reputation
    303
    Thanks
    990
    My Mood
    Fine
    Quote Originally Posted by kylebeall View Post
    hmm yeah I think it may only be on servers that allow you to spawn non dayz vehicles such as the a10... I didn't do extensive testing, but I didnt get kicked on the 3 servers I tried it on.
    /banhammer
    Did I help you? You know what to do.

     





  17. #13
    Domokun_index's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    1,955
    Reputation
    336
    Thanks
    1,265
    and he's banned.

  18. #14
    Confin3d's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    3,254
    Reputation
    748
    Thanks
    2,016
    good riddance, Rustlers v4 is a fucking joke.

  19. #15
    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 confined1123 View Post
    good riddance, Rustlers v4 is a fucking joke.
    Tell us something we don't know...

Page 1 of 3 123 LastLast

Similar Threads

  1. [WTS] Remote exc bypass + more scripts 14$ [BEbypass needed]
    By wewarwo in forum DayZ Selling / Trading / Buying
    Replies: 2
    Last Post: 11-26-2012, 02:59 AM
  2. [REQUEST] Hey Guys i need a Counter Strike 1.6 Serial Key
    By taylan in forum Game Serial Keys
    Replies: 0
    Last Post: 06-13-2010, 11:33 PM
  3. [Tutorial] Counter Strike Source: LSS [Undectable] Scripting
    By grp spartan 983 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 5
    Last Post: 06-12-2010, 09:02 AM
  4. Need help please.. Counter strike source
    By h40xer in forum Visual Basic Programming
    Replies: 5
    Last Post: 12-27-2009, 11:32 PM
  5. need help for Script
    By chichos in forum Combat Arms Hacks & Cheats
    Replies: 17
    Last Post: 09-06-2008, 08:23 AM