PDA

View Full Version : Need Help with Disk Space/Size


Webster17
05-03-2018, 20:32
Can anybody help me fix the "Required disk space", it doesnt show GB, also need help on how to put registry, an example would be helpful. And can anybody help me with Blackbox glass theme? I know im asking a lot but once im finished with completing ill share the script.My goal is to create a much different script than other repack groups.

pakrat2k2
05-03-2018, 21:10
ever tried reading some of the sticky topics, most of what you asked for has already been posted before, take some time to read thru them

Webster17
11-03-2018, 20:51
ever tried reading some of the sticky topics, most of what you asked for has already been posted before, take some time to read thru them

Thanks man, got most of the fixes but still the disk issue problem persists

rinaldo
12-03-2018, 06:12
Thanks man, got most of the fixes but still the disk issue problem persists


function MbOrTb(Float: Extended): String;
begin
if Float/1024 < 1024 then Result:= format('%.2n', [Float/1024])+' MB' else
Result:= format('%.2n', [Float/(1024*1024)])+' GB';
StringChange(Result, ',', '.');
end;