Items+ v3.07 Server API 3.51+ Required and Visual C++ 2022 Runtime Files Required
Config settings CommandText and CommandText2 used for the upload/download commands now work with Unicode characters.
(no config changes)
Items+ v3.06 Server API 3.51+ Required and Visual C++ 2022 Runtime Files Required
Minor code updates and sanity checks.
Updated all config messages to use numbered parameters like {0} instead of just {}.
This type of formatting is needed when doing multiple language translations per message.
Example "Message": "You were charged {0} points to recover your items.\nアイテムを取り戻すために、{0}ポイントが請求されました。",
Items+ v3.05 Beta 2 Server API 3.51+ Required and Visual C++ 2022 Runtime Files Required
* Added upload slot cap limit setting to ItemUploadsAndOverflowProtection
Code:
json
"MaxUploadSlots": -1, //-1 disables slot cap limit //0 will basically disable using `/upload` command //1+ will limit the number of slots that can be uploaded to what you set for the `/upload` command //transferring will still work and upload items regardless of this limit
* Added new slot cap message to Messages
JSON:
"UploadLimitReached": {
"Message": "Upload limit of {} item slots would be exceeded by uploading {} item slots.\nFree up {} item slots in your inventory to continue uploading.",
"Scale": 1.5,
"DisplayTime": 10.0,
"Color": "Red"
}
* Fixed compiler issue from Beta 1 causing loading to fail
(config changes to Messages and ItemUploadsAndOverflowProtection)
Added an upload delay for Ascension boss kills under ItemUploadsAndOverflowProtection
JSON:
"AscensionDelayTime": 10 //Delay in seconds before uploading player items after boss has died. This provides an in game countdown for all players in the boss arena.
Added new supporting message to Messages that will provide a countdown until the uploads will begin.
JSON:
"AscensionUploadStarting": {
"Message": "Your items will begin uploading in {}",
"Scale": 1.0,
"DisplayTime": 2.0,
"Color": "Red"
},
(config changes to Messages and ItemUploadsAndOverflowProtection sections)