could any1 edit my stabby stabby cc so that slice and dice is not used? because if i open with cheapshot it gains me 2 combo points then it uses s n d and loses them id just prefer it if it wasnt used, can any1 edit it for me thanks
When requesting help for a CC it is best to ask in the thread you download the CC from. This way the developer can clearly see your request for assistance.
But in regards to your question, Slice and Dice generates more DPS, if you remove it you will lower your DPS.
If you really want to lower your DPS, open the CC in notepad, search for void Combat() scroll down until you find:
Code:
if (CombatChecks())
{
CheckForCasters();
CheckSliceAndDice();
AddCheck();
}
change it to read:
Code:
if (CombatChecks())
{
CheckForCasters();
// CheckSliceAndDice();
AddCheck();
}