04-15-2021, 08:44 AM
2 hours ago, Desarija said:
Replace
// 옵션 붙는 갯수
int num = GetRandom(1, 5);
// 옵션 테이블
int nOptions[5][8] =
{
{3, 6, 12, 19, 23, 52, 56, 59,},
{1, 5, 12, 19, 23, 53, 56, 59,},
{2, 5, 12, 19, 23, 53, 56, 59,},
{4, 7, 17, 21, 24, 22, 56, 59,},
{4, 5, 53, 52, 23, 22, 56, 59}
};
GAMELOG << init("MONSTER_COMBO_COIN_CHANGE", pc )
<< nItems[item_index][random_item] << delim
<< "Option count: " << num;
with
// 옵션 붙는 갯수
int num = GetRandom(1, 5);
// 옵션 테이블
int nOptions[5][7] =
{
{3, 6, 12, 19, 23, 52, 56,},
{1, 5, 12, 19, 23, 53, 56,},
{2, 5, 12, 19, 23, 53, 56,},
{4, 7, 17, 21, 24, 22, 56,},
{4, 5, 53, 52, 23, 22, 56}
};
GAMELOG << init("MONSTER_COMBO_COIN_CHANGE", pc )
<< nItems[item_index][random_item] << delim
<< "Option count: " << num;
oh yes sorry i forget its started with 1 xD

