Post: Killstreaks DVAR list PLEASE!!!!
10-14-2015, 12:31 AM #1
gtownsbadass
Bounty hunter
(adsbygoogle = window.adsbygoogle || []).push({}); Ok I just need a few more and I have searched everywhere for them can some please give me the DVAR (ie. the DVAR for Swarm is ("killstreak_missile_swarm")), for the following scorestreaks the ones I have doesn't work:

THIS IS WHAT I HAVE THAT DOESN'T WORK

Hunter Killer Drone (missile_drone_mp)
Care Package (supplydrop_mp)
Guardian (microwaveturret_mp)
Sentry Gun (autoturret_mp)
A.G.R. (ai_tank_drop_mp)
EMP System (emp_mp)
VTOL Warship (helicopter_player_gunner_mp)
Dogs (dogs_mp)

much appreciated.
(adsbygoogle = window.adsbygoogle || []).push({});
10-14-2015, 01:49 AM #2
Origin
Pokemon Trainer
Not sure if it works but here is something i found in a pastebin:

    Killstreak Names:
--
killstreak_ai_tank_drop
killstreak_dogs
killstreak_helicopter_comlink
killstreak_helicopter_gunner
killstreak_helicopter_player_gunner
killstreak_helicopter_player_firstperson
killstreak_supply_drop
killstreak_helicopter_guard
killstreak_minigun,killstreak_m32
killstreak_m202_flash_mp
killstreak_m220_tow_drop_mp
killstreak_m220_tow_mp
killstreak_missile_drone
killstreak_missile_swarm
killstreak_planemortar
killstreak_qrdrone_mp
killstreak_spyplane
killstreak_counteruav
killstreak_spyplane_direction
killstreak_rcbomb
killstreak_remote_turret_mp
killstreak_remote_missile
killstreak_remote_mortar
killstreak_straferun
killstreak_supply_drop


credits to: JOREN
10-14-2015, 02:16 AM #3
itsSorrow
In my man cave
Originally posted by gtownsbadass View Post
Ok I just need a few more and I have searched everywhere for them can some please give me the DVAR (ie. the DVAR for Swarm is ("killstreak_missile_swarm")), for the following scorestreaks the ones I have doesn't work:

THIS IS WHAT I HAVE THAT DOESN'T WORK

Hunter Killer Drone (missile_drone_mp)
Care Package (supplydrop_mp)
Guardian (microwaveturret_mp)
Sentry Gun (autoturret_mp)
A.G.R. (ai_tank_drop_mp)
EMP System (emp_mp)
VTOL Warship (helicopter_player_gunner_mp)
Dogs (dogs_mp)

much appreciated.


What do you mean? Killstreaks are not given by Dvars
10-14-2015, 02:53 AM #4
EternalHabit
Former Staff
Originally posted by gtownsbadass View Post
Ok I just need a few more and I have searched everywhere for them can some please give me the DVAR (ie. the DVAR for Swarm is ("killstreak_missile_swarm")), for the following scorestreaks the ones I have doesn't work:

THIS IS WHAT I HAVE THAT DOESN'T WORK

Hunter Killer Drone (missile_drone_mp)
Care Package (supplydrop_mp)
Guardian (microwaveturret_mp)
Sentry Gun (autoturret_mp)
A.G.R. (ai_tank_drop_mp)
EMP System (emp_mp)
VTOL Warship (helicopter_player_gunner_mp)
Dogs (dogs_mp)

much appreciated.

use this

    GK(killstreak,in)
{
if(isDefined(in))
{
self giveWeapon(killstreak);
self switchToWeapon(killstreak);
self iPrintln("^2"+killstreak+":^7 Given");
//closemenu function goes here
}
else
{
self maps/mp/killstreaks/_killstreaks::givekillstreak(maps/mp/killstreaks/_killstreaks::getkillstreakbymenuname(killstreak),5594,1,5594);
self iPrintln("^2"+killstreak+":^7 Given");
}
}


then just call it like this in your menu

    self addOption("X", "Hunter Killer", ::GK, "missile_drone_mp", "hamburger");
10-14-2015, 08:42 AM #5
gtownsbadass
Bounty hunter
Originally posted by xTurntUpLobbies View Post
use this

    GK(killstreak,in)
{
if(isDefined(in))
{
self giveWeapon(killstreak);
self switchToWeapon(killstreak);
self iPrintln("^2"+killstreak+":^7 Given");
//closemenu function goes here
}
else
{
self maps/mp/killstreaks/_killstreaks::givekillstreak(maps/mp/killstreaks/_killstreaks::getkillstreakbymenuname(killstreak),5594,1,5594);
self iPrintln("^2"+killstreak+":^7 Given");
}
}


then just call it like this in your menu

    self addOption("X", "Hunter Killer", ::GK, "missile_drone_mp", "hamburger");


thanks bro didn't work as it was but I was able to take what I had for the ones that worked and used that first argument in a different thread and used it for the rest.
10-14-2015, 08:43 AM #6
BullyWiiPlaza
Climbing up the ladder
Here are functions for giving all scorestreaks. Enjoy Happy

    giveScoreStreak(scoreStreak)
{
self maps/mp/killstreaks/_killstreaks::givekillstreak(maps/mp/killstreaks/_killstreaks::getkillstreakbymenuname(scoreStreak), 5594, true, 5594);
}

giveUAV()
{
giveScoreStreak("killstreak_spyplane");
}

giveRCXD()
{
giveScoreStreak("killstreak_rcbomb");
}

giveHunterKillerDrone()
{
giveScoreStreak("killstreak_missile_drone");
}

giveCarePackage()
{
giveScoreStreak("killstreak_supply_drop");
}

giveCounterUAV()
{
giveScoreStreak("killstreak_counteruav");
}

giveGuardian()
{
giveScoreStreak("killstreak_microwave_turret");
}

giveHellstormMissile()
{
giveScoreStreak("killstreak_remote_missile");
}

giveLightningStrike()
{
giveScoreStreak("killstreak_planemortar");
}

giveSentryGun()
{
giveScoreStreak("killstreak_auto_turret");
}

giveDeathmachine()
{
giveScoreStreak("killstreak_minigun");
}

giveAGR()
{
giveScoreStreak("killstreak_ai_tank_drop");
}

giveStealthChopper()
{
giveScoreStreak("killstreak_helicopter_comlink");
}

giveOrbitalVSAT()
{
giveScoreStreak("killstreak_spyplane_direction");
}

giveEscortDrone()
{
giveScoreStreak("killstreak_helicopter_guard");
}

giveEMPSystems()
{
giveScoreStreak("killstreak_emp");
}

giveWarthog()
{
giveScoreStreak("killstreak_straferun");
}

giveLodestar()
{
giveScoreStreak("killstreak_remote_mortar");
}

giveVTOLWarship()
{
giveScoreStreak("killstreak_helicopter_player_gunner");
}

giveEMPSystems()
{
giveScoreStreak("killstreak_emp");
}

giveK9Unit()
{
giveScoreStreak("killstreak_dogs");
}

giveSwarm()
{
giveScoreStreak("killstreak_missile_swarm");
}

The following user thanked BullyWiiPlaza for this useful post:

Vote

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo