I dont know why you said not giving that effects, I saw from https://github.com/rathena/rathena/blob/master/db/re/item_combos.yml its there.
- Combo:
- Star_Eyepatch_JP_
- Orc_Hero_Card
Script: |
if (BaseLevel >= 100) {
bonus bBaseAtk,30*(readparam(bVit)/10);
bonus bMatk,30*(readparam(bVit)/10);
bonus bVit,3*(readparam(bLuk)/10);
bonus bLuk,3*(readparam(bLuk)/10);
}
else if (BaseLevel <= 99) {
bonus bBaseAtk,10*(readparam(bVit)/10);
bonus bMatk,10*(readparam(bVit)/10);
bonus bVit,readparam(bLuk)/10;
bonus bLuk,readparam(bLuk)/10;
}
If you're using pre-re then its not there : https://github.com/rathena/rathena/blob/master/db/pre-re/item_combos.yml then you should add it yourself.