+ Bug Fix: Buy Command had an error with max possible Limit.
+ Better Performance with the Payment Scheduler
+ New Features:
- SQL Lite will be used, if MySQL is not setup.
- Auto Payment can be disabled in the Config
- Default Auto Payment can be setup in the Config
- Categorys can be setup with a permission
- Its possible to limit the max extended Amount
SQLLite is Beta, since this is my first time using it.
Code (Text):
#Category Settings. Possible to add more or edit the values. It has to be the category ID
#usePermission -> Are Permissions needed, to buy such a Shop/Hotel
#autoPaymentDefault -> The Default Status of the auto Payment
#autoPaymentDisabled -> If auto Payment should be changeable
#maxRentExtendAmount -> The Max Amount a Player can extend the rent
categorySettings:
ShopCategory:
1:
usePermission: false
autoPaymentDefault: true
autoPaymentDisabled: true
maxRentExtendAmount: 5
2:
usePermission: true
autoPaymentDefault: true
autoPaymentDisabled: false
maxRentExtendAmount: 3
HotelCategory:
1:
usePermission: false
autoPaymentDefault: true
autoPaymentDisabled: false
maxRentExtendAmount: 5
2:
usePermission: true
autoPaymentDefault: true
autoPaymentDisabled: false
maxRentExtendAmount: 3