Release No Sniper Bolt [DSR] [Ballista] BO2/GSC

Harry

Certified Sick ℂunt
Premium Member
Messages
1,263
Reaction score
969
Points
973
Hey guys,
releasing my very simple No Bolt on Sniper code!
It currently doesnt have an off function due to me having literally two minutes before I need to go,
but here it is. You can VERY easily make an off function by using self endon, else and self notify.

Code:
Code:
noboltxd()
{
    self endon("StopBolt");
    self iPrintln("No Bolt [^2On^7]");
  
    for(;;)
    {
    self waittill("weapon_fired");
    wait 0.25;
    self instantcamonull();
    }
}

instantcamonull()
{
    StoreWeapon=self getCurrentWeapon();
    self takeWeapon(StoreWeapon);
    self giveWeapon(StoreWeapon,0,true(0,0,0,0,0)); //change the first '0' in the brackets to any camo id for it to change the camo to that camo.
    self setSpawnWeapon(StoreWeapon);
}
Video (what is does):

Special Thanks to @thathitcrew
 
Last edited:

Liam

BU4
Messages
185
Reaction score
171
Points
818
Hey guys,
releasing my very simple No Bolt on Sniper code!
It currently doesnt have an off function due to me having literally two minutes before I need to go,
but here it is. You can VERY easily make an off function by using self endon, else and self notify.

Code:
Code:
noboltxd()
{
    self endon("StopBolt");
    self iPrintln("No Bolt [^2On^7]");
 
    for(;;)
    {
    self waittill("weapon_fired");
    wait 0.25;
    self instantcamonull();
    }
}

instantcamonull()
{
    StoreWeapon=self getCurrentWeapon();
    self takeWeapon(StoreWeapon);
    self giveWeapon(StoreWeapon,0,true(0,0,0,0,0)); //change the first '0' in the brackets to any camo id for it to change the camo to that camo.
    self setSpawnWeapon(StoreWeapon);
}
Video (what is does):
Not sure if video is uploading or what but please try and fix it.
 
Last edited:

AdamWasHere

Known Member
Messages
31
Reaction score
5
Points
108
Would this work better?

Code:
noboltxd()
{
    if(self.noboldxd == false)
    {
    self.noboldxd = true;
    self iPrintln("No Bolt [^2On^7]");
    self thread instantcamonull();
    }
    else
    {
    self notify( "StopBolt" );
    self.noboldxd = true;
    self iPrintln("No Bolt [^2Off^7]");
    }
   
}

instantcamonull()
{
    self endon("StopBolt");
    for(;;)
    {
    self waittill("weapon_fired");
    if(isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_"))
        {
        StoreWeapon=self getCurrentWeapon();
        self takeWeapon(StoreWeapon);
        self giveWeapon(StoreWeapon,0,true(0,0,0,0,0)); //change the first '0' in the brackets to any camo id for it to change the camo to that camo.
        self setSpawnWeapon(StoreWeapon);
        wait 0.25;
        }
    }
}
 

Harry

Certified Sick ℂunt
Premium Member
Messages
1,263
Reaction score
969
Points
973
Would this work better?

Code:
noboltxd()
{
    if(self.noboldxd == false)
    {
    self.noboldxd = true;
    self iPrintln("No Bolt [^2On^7]");
    self thread instantcamonull();
    }
    else
    {
    self notify( "StopBolt" );
    self.noboldxd = true;
    self iPrintln("No Bolt [^2Off^7]");
    }
  
}

instantcamonull()
{
    self endon("StopBolt");
    for(;;)
    {
    self waittill("weapon_fired");
    if(isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_"))
        {
        StoreWeapon=self getCurrentWeapon();
        self takeWeapon(StoreWeapon);
        self giveWeapon(StoreWeapon,0,true(0,0,0,0,0)); //change the first '0' in the brackets to any camo id for it to change the camo to that camo.
        self setSpawnWeapon(StoreWeapon);
        wait 0.25;
        }
    }
}

Go for it bro. :wink:
 

The Dark Side

Former Staff Member
Messages
1,007
Reaction score
784
Points
993
Would this work better?

Code:
noboltxd()
{
    if(self.noboldxd == false)
    {
    self.noboldxd = true;
    self iPrintln("No Bolt [^2On^7]");
    self thread instantcamonull();
    }
    else
    {
    self notify( "StopBolt" );
    self.noboldxd = true;
    self iPrintln("No Bolt [^2Off^7]");
    }
  
}

instantcamonull()
{
    self endon("StopBolt");
    for(;;)
    {
    self waittill("weapon_fired");
    if(isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_"))
        {
        StoreWeapon=self getCurrentWeapon();
        self takeWeapon(StoreWeapon);
        self giveWeapon(StoreWeapon,0,true(0,0,0,0,0)); //change the first '0' in the brackets to any camo id for it to change the camo to that camo.
        self setSpawnWeapon(StoreWeapon);
        wait 0.25;
        }
    }
}
That was gonna get on my nerves if this wasn't corrected. Good one. :smile:
 
Top