NETCHK Posted August 7, 2017 Share Posted August 7, 2017 Hi everyone, I need help only in a fetchRemote function, I need an example to understand in client-side. Thank you all Link to comment
NeXuS™ Posted August 7, 2017 Share Posted August 7, 2017 I mean, the best examples are on the MTA:SA wiki page, but if you still feel like it'd help you a lot if we'd give you an example, just reply. 1 Link to comment
NETCHK Posted August 7, 2017 Author Share Posted August 7, 2017 7 minutes ago, NeXuS™ said: I mean, the best examples are on the MTA:SA wiki page, but if you still feel like it'd help you a lot if we'd give you an example, just reply. need other example only client-side, please I have Problem fetchRemote ( "http://25.21.228.242/all/car.dff", txd, "", false, getLocalPlayer(), 400 ) -- not is doing download in Client-Side !! Link to comment
NeXuS™ Posted August 7, 2017 Share Posted August 7, 2017 Do you have the IP enabled by requestBrowserDomains? 1 Link to comment
NETCHK Posted August 7, 2017 Author Share Posted August 7, 2017 you 3 minutes ago, NeXuS™ said: Do you have the IP enabled by requestBrowserDomains? you have example ?? Link to comment
NeXuS™ Posted August 7, 2017 Share Posted August 7, 2017 requestBrowserDomains({"http://25.21.228.242/"} Link to comment
NETCHK Posted August 7, 2017 Author Share Posted August 7, 2017 10 minutes ago, NeXuS™ said: requestBrowserDomains({"http://25.21.228.242/"} this ? requestBrowserDomains({"http://25.21.228.242/"}) function download() fetchRemote ( "http://25.21.228.242/all/car.txd", txd, "", false, getLocalPlayer() ) end please !!! Link to comment
NeXuS™ Posted August 7, 2017 Share Posted August 7, 2017 requestBrowserDomains({"http://25.21.228.242/"}) function startDownload() fetchRemote("http://25.21.228.242/all/car.txd", callBack, "", false) end startDownload() function callBack(rData, errno) if errno == 0 then -- Do something end end Try this. 1 1 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