Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #include <a_http>
- main()
- {
- HTTP(1,HTTP_GET,"ip-whois.net/ip_geo.php?ip=79.134.25.245","","Country");
- }
- forward Country(index, response_code, data[]);
- public Country(index, response_code, data[])
- {
- if(response_code == 200)
- {
- new pos = strfind(data,"Страна:",true,-1);
- new pos2 = strfind(data,"<br>",true,pos);
- new country[100];
- strmid(country,data,pos+8,pos2,strlen(data));
- print(country);
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment