I whant to add Rare Reroll Cubing Recipe to my D2NT 3.3
This Code is OK? or is more to add,
Thx in Advance for help
PHP Code:
const NTCU_RARE = 3;
********************************
else if(NTConfig_CubingItem[i][0] == NTCU_RARE)
_restrictedIngredients[1].push(NTCU_SKULL_PERFECT);
********************************
}
else if(NTConfig_CubingItem[i][0] == NTCU_RARE)
{
// Check whether the char carries 6 perfect skulls
for(n = 2; n < 9; n++)
{
if(NTConfig_CubingItem[i][n] == null)
break;
}
if(n >= 9)
break;
***********************************
NTConfig_CubingItem.push([NTCU_RARE, 421]);
***********************************
__________________