Hello,
I understood Combu is capable to add items in game without manually add fields in the database, using Admin functions for example, and retrieve data from the database using the inventory functions. I do not know if it is possible to add in the game database images, float variable and other types of data using Combu functionalities.
thamk you for your attention...
The customData hashtable (existing for accounts, inventory items and more) can contain any type of "text" data (string, integer, float, boolean etc., eventually you could also serialize/deserialize your classes if you use Reflection to build a hashtable from their public properties so you can call .toJson() on the hashtable) but not binary data, so you cannot store images in the database (anyway it's really not recommended to store binary data in a database, because it hits the table performance and increase rapidly your database size). To store images and other files you should use User File.
FRANCESCO CROCETTI @ SKARED CREATIONS