![]() |
|
HTTP Downloader - Printable Version +- CSHOT.PL - Pluginy amxx , plugins amxx , server game counter strike , serwery gier , forum (https://cshot.pl) +-- Forum: Counter-Strike (https://cshot.pl/forumdisplay.php?fid=54) +--- Forum: Counter-Strike 1.6 (https://cshot.pl/forumdisplay.php?fid=55) +---- Forum: PLUGINY (https://cshot.pl/forumdisplay.php?fid=62) +---- Thread: HTTP Downloader (/showthread.php?tid=2236) |
HTTP Downloader - Poster - 09-18-2025 [TITLE] HTTP Downloader [URL] https://amxx.pl/topic/136760-http-downloader/ **HTTP Downloader** **Autor:** **Bentski** ![]() Zezwala serwerowi na pobranie plików z internetu. Przydatne dla pluginów, które wymagają auto-updatera **Wymagania** * * Amx Mod X 1,76 lub wyższy * * Moduł Sockets * Standardowy limit plików do pobrania to 10. Aby to zmienić, otwórz include/httpdl.inc i zmień wartość MAX_DOWNLOADS i skompiluj plugin ponownie **Przykład:** #include <amxmodx> #include <httpdl> public plugin_init() { register_clcmd("say /dl", "test"); } public test(id) { download("http://google.com/", "addons/amxmodx/scripting/google.txt"); } // wywolywany, kiedy pobieranie sie skonczy public dlcomplete(id, file[]) { server_print("Pobrano (id: %d) %s", id, file); } **** ** **Załączone pliki * [url=https://amxx.pl/index.php?app=core&module=attach§ion=attach&attach_id=67771 "Pobierz załącznik"] [/url] [url=https://amxx.pl/index.php?app=core&module=attach§ion=attach&attach_id=67771 "Pobierz załącznik"]**httpdl.zip**[/url] **2,38 KB** 284 Ilość pobrań Załączniki: httpdl.zip |