Hello!
Is it possible to allow all merchant classes to use carts intended for mechanics and genetics?
Lowering the levels in clif.c does nothing:
#ifdef NEW_CARTS
(type == 9 && sd->status.base_level > 130) ||
(type == 8 && sd->status.base_level > 120) ||
(type == 7 && sd->status.base_level > 110) ||
(type == 6 && sd->status.base_level > 100) ||
#endif
(type == 5 && sd->status.base_level > 90) ||
(type == 4 && sd->status.base_level > 80) ||
(type == 3 && sd->status.base_level > 65) ||
(type == 2 && sd->status.base_level > 40) ||
(type == 1))
Is this hardcoded in the client?
Thank you.
Is it possible to allow all merchant classes to use carts intended for mechanics and genetics?
Lowering the levels in clif.c does nothing:
#ifdef NEW_CARTS
(type == 9 && sd->status.base_level > 130) ||
(type == 8 && sd->status.base_level > 120) ||
(type == 7 && sd->status.base_level > 110) ||
(type == 6 && sd->status.base_level > 100) ||
#endif
(type == 5 && sd->status.base_level > 90) ||
(type == 4 && sd->status.base_level > 80) ||
(type == 3 && sd->status.base_level > 65) ||
(type == 2 && sd->status.base_level > 40) ||
(type == 1))
Is this hardcoded in the client?
Thank you.
Last edited by a moderator: