07.04.2009, 13:07
(
Последний раз редактировалось DracoBlue; 11.09.2012 в 12:17.
)
Hello,
I want to release this little plugin, which is doing not much, but downloading websites (synchron) so I can use them inside of the samp-server.
pwncurl 0.1
o Download (22KB)
Usful addons
o urlencode (pwn, useful for encoding parameters in url)
HELP needed!
_________________________________________________
Currently I can only provide a pwncurl.so (for linux) and the source code, since I was not able to compile it on windows, yet. I would like to compile it on mingw-environment or something like that, to have no dependency to the visual studio runtime environment.
--> Ticket#2 precompiled pwncurl.dll for windows is not available, yet
Experimental Windows Versions available by Killerkid. & JeNkStAX.
_________________________________________________
What for?
Initially I made this for my clientside anticheat-protection to coordinate the servers, but I guess one could implement an automated filterscript/gamemode version detection by using this . Or dictionary services? No idea what's all possible, if you have access to websites content from ingame! If you need _more_ then please check out Boylett's xSockets instead.
Example
Regards,
DracoBlue
I want to release this little plugin, which is doing not much, but downloading websites (synchron) so I can use them inside of the samp-server.
pwncurl 0.1
o Download (22KB)
Usful addons
o urlencode (pwn, useful for encoding parameters in url)
HELP needed!
_________________________________________________
Currently I can only provide a pwncurl.so (for linux) and the source code, since I was not able to compile it on windows, yet. I would like to compile it on mingw-environment or something like that, to have no dependency to the visual studio runtime environment.
--> Ticket#2 precompiled pwncurl.dll for windows is not available, yet
Experimental Windows Versions available by Killerkid. & JeNkStAX.
_________________________________________________
What for?
Initially I made this for my clientside anticheat-protection to coordinate the servers, but I guess one could implement an automated filterscript/gamemode version detection by using this . Or dictionary services? No idea what's all possible, if you have access to websites content from ingame! If you need _more_ then please check out Boylett's xSockets instead.
Example
Код:
new uri[255]; format(uri, 255, "%s", "http://example.org"); new content[1024]; pwncurl_get(uri,content,1024); printf("Content of uri %s is %s", uri, content);
DracoBlue