pepsi18 Posted October 16, 2017 Share Posted October 16, 2017 how can i do so that players download the skins while playing give me some example plis 3 Link to comment
Administrators Lpsd Posted October 17, 2017 Administrators Share Posted October 17, 2017 local screenWidth, screenHeight = guiGetScreenSize() local webBrowser = createBrowser(screenWidth, screenHeight, false, false) function webBrowserRender() dxDrawImage(0, 0, screenWidth, screenHeight, webBrowser, 0, 0, 0, tocolor(255,255,255,255), true) end addEventHandler("onClientBrowserCreated", webBrowser, function() loadBrowserURL(webBrowser, "https://wiki.multitheftauto.com/wiki/Main_Page") addEventHandler("onClientRender", root, webBrowserRender) end ) Load this script and you should have all the information you need. 1 2 1 Link to comment
Scripting Moderators thisdp Posted October 17, 2017 Scripting Moderators Share Posted October 17, 2017 fetchRemote Link to comment
Moderators IIYAMA Posted October 17, 2017 Moderators Share Posted October 17, 2017 If you are a beginner. (which I do not know if you are) Then use downloadFile. https://wiki.multitheftauto.com/wiki/DownloadFile (there is an example in it, which shows you how to download a test.xml file) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now