- Joined
- May 19, 2017
- Messages
- 112
- Reaction score
- 10
- First Language
- Italian
- Primarily Uses
- RMMV
Hi!
I'm using this call script to check the PC RAM value and then store it in a variable (for requirements purposes):
var os = require('os');
var divValue = Math.pow(1024, 3);
var totalMem = os.totalmem() / divValue;
$gameVariables.setValue(150, totalMem.toFixed(1));
Is there a way to check for HDD/SSD total and free space and then store those values in variables?
Is it also possible to check for CPU/HDD temperatures?
I'm using this call script to check the PC RAM value and then store it in a variable (for requirements purposes):
var os = require('os');
var divValue = Math.pow(1024, 3);
var totalMem = os.totalmem() / divValue;
$gameVariables.setValue(150, totalMem.toFixed(1));
Is there a way to check for HDD/SSD total and free space and then store those values in variables?
Is it also possible to check for CPU/HDD temperatures?
