Aspire

Known Member
Messages
31
Reaction score
14
Points
118
I've been looking through the bo3 perks list and I'm trying to get the perks to work but I can't really figure out what is what so that's how far I came.

"//" in front of a specialty mean that I'm not sure if it's right.

Code:
//Perk 1 greed
    //Afterburner
        //specialty_earnmoremomentum
        specialty_jetcharger

    //Blind Eye
        specialty_nottargetedbyairsupport
        specialty_nokillstreakreticle

    //Sixth Sense
        specialty_detectnearbyenemies

    //Flak Jacket
        specialty_flakjacket
        specialty_fireproof
        //specialty_armorvest

    //Overclock
        specialty_overcharge
        //PERKS

    //Ghost
        //PERKS
        //PERKS

//////////////////////////////////////////////////////////

//Perk 2 greed
    //Fast Hands
        specialty_fastequipmentuse 
        specialty_fastweaponswitch

    //Ante Up
        specialty_anteup

    //Hard Wired
        specialty_immunecounteruav
        specialty_immunesmoke
        specialty_immuneemp
        specialty_immunetriggerc4
        specialty_immunetriggerbetty //tripmines?
        specialty_immunetriggershock
        specialty_trackerjammer
        specialty_sixthsensejammer

    //Tracker
        specialty_tracker

    //Cold Blooded
        //specialty_noname
        specialty_immunenvthermal
        specialty_nottargetedbyaitank    
        specialty_nottargetedbyraps      
        specialty_nottargetedbyrobot      
        specialty_nottargetedbysentry 

    //Scavenger
        specialty_scavenger

//////////////////////////////////////////////////////////

//Perk 3 greed
    //Gung-Ho   
        specialty_sprintequipment
        specialty_sprintfire
        specialty_sprintgrenadelethal
        specialty_sprintgrenadetactical
        specialty_sprintrecovery
        specialty_sprintfirerecovery

    //Blast Suppressor
        specialty_jetnoradar
        specialty_jetquiet

    //Awareness
        specialty_loudenemies
        //PERKS

    //Tactical Mask
        specialty_stunprotection
        specialty_flashprotection
        specialty_proximityprotection //shockcharges?


    //Engineer
        //specialty_detectexplosive
        //specialty_delayexplosive
        specialty_showenemyequipment
        specialty_showenemyvehicles
   

    //Dead Silence
        specialty_quieter
        //PERKS
 

JayCoder

Veteran
Staff member
Messages
369
Reaction score
152
Points
903
PHP:
//Here an example
function PerkSetting()
{
    self setperk("Perk_Name_Here");
}

//also yea they look correct your perk list
//you can use this function to test your perks etc
 
Last edited:

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
I've been looking through the bo3 perks list and I'm trying to get the perks to work but I can't really figure out what is what so that's how far I came.

"//" in front of a specialty mean that I'm not sure if it's right.

Code:
//Perk 1 greed
    //Afterburner
        //specialty_earnmoremomentum
        specialty_jetcharger

    //Blind Eye
        specialty_nottargetedbyairsupport
        specialty_nokillstreakreticle

    //Sixth Sense
        specialty_detectnearbyenemies

    //Flak Jacket
        specialty_flakjacket
        specialty_fireproof
        //specialty_armorvest

    //Overclock
        specialty_overcharge
        //PERKS

    //Ghost
        //PERKS
        //PERKS

//////////////////////////////////////////////////////////

//Perk 2 greed
    //Fast Hands
        specialty_fastequipmentuse
        specialty_fastweaponswitch

    //Ante Up
        specialty_anteup

    //Hard Wired
        specialty_immunecounteruav
        specialty_immunesmoke
        specialty_immuneemp
        specialty_immunetriggerc4
        specialty_immunetriggerbetty //tripmines?
        specialty_immunetriggershock
        specialty_trackerjammer
        specialty_sixthsensejammer

    //Tracker
        specialty_tracker

    //Cold Blooded
        //specialty_noname
        specialty_immunenvthermal
        specialty_nottargetedbyaitank   
        specialty_nottargetedbyraps     
        specialty_nottargetedbyrobot     
        specialty_nottargetedbysentry

    //Scavenger
        specialty_scavenger

//////////////////////////////////////////////////////////

//Perk 3 greed
    //Gung-Ho  
        specialty_sprintequipment
        specialty_sprintfire
        specialty_sprintgrenadelethal
        specialty_sprintgrenadetactical
        specialty_sprintrecovery
        specialty_sprintfirerecovery

    //Blast Suppressor
        specialty_jetnoradar
        specialty_jetquiet

    //Awareness
        specialty_loudenemies
        //PERKS

    //Tactical Mask
        specialty_stunprotection
        specialty_flashprotection
        specialty_proximityprotection //shockcharges?


    //Engineer
        //specialty_detectexplosive
        //specialty_delayexplosive
        specialty_showenemyequipment
        specialty_showenemyvehicles
  

    //Dead Silence
        specialty_quieter
        //PERKS
This looks correct, thank you for sharing it! I will take a look into the multiplayer after I finished my Zombie stuff!
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
I've been looking through the bo3 perks list and I'm trying to get the perks to work but I can't really figure out what is what so that's how far I came.

"//" in front of a specialty mean that I'm not sure if it's right.

Code:
//Perk 1 greed
    //Afterburner
        //specialty_earnmoremomentum
        specialty_jetcharger

    //Blind Eye
        specialty_nottargetedbyairsupport
        specialty_nokillstreakreticle

    //Sixth Sense
        specialty_detectnearbyenemies

    //Flak Jacket
        specialty_flakjacket
        specialty_fireproof
        //specialty_armorvest

    //Overclock
        specialty_overcharge
        //PERKS

    //Ghost
        //PERKS
        //PERKS

//////////////////////////////////////////////////////////

//Perk 2 greed
    //Fast Hands
        specialty_fastequipmentuse
        specialty_fastweaponswitch

    //Ante Up
        specialty_anteup

    //Hard Wired
        specialty_immunecounteruav
        specialty_immunesmoke
        specialty_immuneemp
        specialty_immunetriggerc4
        specialty_immunetriggerbetty //tripmines?
        specialty_immunetriggershock
        specialty_trackerjammer
        specialty_sixthsensejammer

    //Tracker
        specialty_tracker

    //Cold Blooded
        //specialty_noname
        specialty_immunenvthermal
        specialty_nottargetedbyaitank   
        specialty_nottargetedbyraps     
        specialty_nottargetedbyrobot     
        specialty_nottargetedbysentry

    //Scavenger
        specialty_scavenger

//////////////////////////////////////////////////////////

//Perk 3 greed
    //Gung-Ho  
        specialty_sprintequipment
        specialty_sprintfire
        specialty_sprintgrenadelethal
        specialty_sprintgrenadetactical
        specialty_sprintrecovery
        specialty_sprintfirerecovery

    //Blast Suppressor
        specialty_jetnoradar
        specialty_jetquiet

    //Awareness
        specialty_loudenemies
        //PERKS

    //Tactical Mask
        specialty_stunprotection
        specialty_flashprotection
        specialty_proximityprotection //shockcharges?


    //Engineer
        //specialty_detectexplosive
        //specialty_delayexplosive
        specialty_showenemyequipment
        specialty_showenemyvehicles
  

    //Dead Silence
        specialty_quieter
        //PERKS
Any updates in this?

There is an array inside of the game with all perks I will dump it and post it here. :smile:
 
Top