How can i set up the size of inventory objects and where?
THX
You can do this with SetInvDimensions. If you wanted your inventory objects to be 32x24 pxels, you'd this in the game_start section of the global script:
SetInvDimensions (32, 24);
Thanks. :)