Hello!
Since I couldn't really find much information about the NVGT_CURL plugin in NVGT.chm, I thought I'd just ask here which functions this plugin actually supports.
Specifically, I'd like to download a file from the internet and directly write the contents to a string, without having to save the file on disk, as with the internet_request class.
Are there any functions that can do what I described above?
Regards
Maximilian
Hello! This is a little feature I wrote for my game. I hope it helps you.
string ob_url(string url){
internet_request i(url);
while (!i.complete){
wait(5);
}
string data=i.response_body;
if(data.length()==0) return "error";
else return data;
}