Posted
This is mainly for developers that make custom executors.
NOTE: This is for people who don't have HttpGet or don't know how to use it.
WARNING: Horrible code and there is a better way.
WebClient WC = new WebClient();
public void NotRealHttpGet(string site)
{
string downloadedscript = WC.DownloadString(site);
//i dunno what api you using sooo...
API.Execute(downloadedscript =+ "\n\nprint('downloaded script successfully!');//dont need this print but still
}
NotRealHttpGet("your raw link");
//ik this is super ez but its for the little kiddos who dont know much c#Replied
private string Loadstringer(string Site)
{
string Script = null;
using (var Http = new WebClient())
Script = $"loadstring(game:HttpGet({Site}))()";
return Script;
}
private string HttpGet(string Site)
{
using (var Http = new WebClient())
return Http.DownloadString(Site);
return null;
}Cancel
Post
Replied
why, just why /chaaars
Cancel
Post
Replied
No idea i just made this for no reason.
Also thanks ImmuneLion.
Cancel
Post
Added
@Astronemi It's fake HttpGet. All it does is Download the Raw Data from a Link, and pastes it onto a string. Then it executes it.
Cancel
Post
Added
Yep. its super simple..
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post