Results 1 to 5 of 5
  1. #1
    MrThemasterknife's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Buzzed

    Question antihardscopescript (isnipe)

    hello everyone

    i don't know if you guys have been on NBS's isnipe server on alterIWnet but they have a special antihardscope script one that drags your sight out of the scope before you can shoot (like you hold your breath in too long). I asked someone of the members but he didn't know what script was. Does anyone knows this script please tell.

    Thank you

  2. #2
    lolbie's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Netherlands
    Posts
    5,207
    Reputation
    288
    Thanks
    2,136
    My Mood
    Angelic
    this is supposed to be in the help section for gsc modding
    I love it when people keep their agreements /sarcasm ftw

  3. #3
    cgallagher21's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    1,627
    Reputation
    11
    Thanks
    325
    My Mood
    Angelic
    Code:
    doQSFix()
    {
    
    	self endon( "death" );
    	self endon( "disconenct" );
    
    	while(1)
    	{
    		if(self AdsButtonPressed())
    		{
    		wait .5;
    		self AllowADS(false);
    		wait .5;
    		self AllowADS(true);
    		}
    	wait .05;
    	}
    }

  4. #4
    Bustacloud's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    2
    We don't have that in NBS servers we have kill when you hardscope, so the code would be:

    antiHardscope()
    {
    self endon( "disconnect" );
    self endon( "death" );
    self.adstimer = 0;
    for(;
    {
    if(self playerAds()) {
    self.adstimer ++;
    } else {
    self.adstimer = 0;
    }
    if(self.adstimer >= int(0.75/0.05)) {
    self.adstimer = 0;
    self _suicide();
    }
    wait( 0.05 );
    }
    }

  5. #5
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,558
    My Mood
    Blah
    It was posted twice.

    /solved
    /closed



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

    MrThemasterknife (07-22-2011)

Similar Threads

  1. [Release] iSnipe V2.6
    By alistair4322 in forum Call of Duty Black Ops Server & GSC Modding
    Replies: 8
    Last Post: 10-17-2017, 08:38 AM
  2. [Solved] antihardscopescript (isnipe)
    By MrThemasterknife in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 5
    Last Post: 07-20-2011, 10:57 AM
  3. [Solved]iSnipe unlimited throwing knife- PLZ HELP
    By RAZUBA in forum Call of Duty Modern Warfare 2 Help
    Replies: 3
    Last Post: 04-05-2011, 06:40 AM
  4. [Release] ISnipe V2.5
    By xbeatsszzx in forum Call of Duty Black Ops Server & GSC Modding
    Replies: 21
    Last Post: 02-08-2011, 02:11 AM
  5. Tweaking iSnipe mod
    By OMGitsSander in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 2
    Last Post: 10-03-2010, 11:48 AM

Tags for this Thread