Онлайн на сервере

Cactusek

Потрачен
Автор темы
20
12
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Есть лаунчер от чапо на девелнексте
Проблема в том что при получения онлайна через посредника он не выводится т.к сайт давно лежит
Есть ли такойже сайт?

Код

Develnext help:
    function doTab_popularClickLeft(UXMouseEvent $e = null)
    {
        $this->TAB = 2;
        
        $this->add->position = [16, 416];
        $this->add->size = [608, 32];
        $this->add->text = 'ДОБАВИТЬ В СОХРАНЕННЫЕ';
        
        $this->list_popular->items->clear();
        $this->remove->hide();
        $this->list_popular->show();
        $LIST = [];
        $this->load_indicator->show();
        $this->tab_indicator->position = [320, 56];
        //$this->list->items->clear();
        $arr = [];   
        $http = new HttpClient;       
        $http->getAsync('https://raw.githubusercontent.com/GovnocodedByChapo/CSAMP/main/popular.json', $arr,function (HttpResponse $response) {
        $this->hidePreloader();
            if ($response) {
                $out = Json::decode($response->body());
                for ($i = 0; $i < count($out); $i++)
                {
                    $this->list_popular->items->add(['name' => $out[$i][1], 'ip' => $out[$i][0]]);
                }
            }   
        });
        $this->load_indicator->hide(); 
        
        
        
        
        
        
    }

    /**
     * @event tab_internet.click-Left
     */
    function doTab_internetClickLeft(UXMouseEvent $e = null)
    {
        $this->TAB = 3;
        $this->load_indicator->show();
        $this->tab_indicator->position = [424, 56];
        $this->list->items->clear();
        $arr = [];   
        $http = new HttpClient;       
        $http->getAsync('https://пытался-поменять-но-не-вышло.рф', $arr,function (HttpResponse $response) {
             $this->hidePreloader();
        
             if ($response) {
                
                 $out = $response->body(); 
                 $internet = Regex::split('\n', $out);
                for ($i == 1; $i <= count($internet); $i++)
                {
                    if ($internet[$i] != '')
                    {
                        $this->list->items->add(['name' => 'HOSTNAME', 'players' => '0/0', 'ping' => '-', 'ip' => $internet[$i]]);
                    }
                }
                $this->refreshAll();
                $this->load_indicator->hide();
                $this->remove->hide();
             }   
        }); 
    }

http://ff004d.site/index.php?ip={IP}&port={PORT} сайт который лег

 

whyega52

Гений, миллионер, плейбой, долбаеб
Модератор
2,783
2,609
Есть лаунчер от чапо на девелнексте
Проблема в том что при получения онлайна через посредника он не выводится т.к сайт давно лежит
Есть ли такойже сайт?

Код

Develnext help:
    function doTab_popularClickLeft(UXMouseEvent $e = null)
    {
        $this->TAB = 2;
       
        $this->add->position = [16, 416];
        $this->add->size = [608, 32];
        $this->add->text = 'ДОБАВИТЬ В СОХРАНЕННЫЕ';
       
        $this->list_popular->items->clear();
        $this->remove->hide();
        $this->list_popular->show();
        $LIST = [];
        $this->load_indicator->show();
        $this->tab_indicator->position = [320, 56];
        //$this->list->items->clear();
        $arr = [];  
        $http = new HttpClient;      
        $http->getAsync('https://raw.githubusercontent.com/GovnocodedByChapo/CSAMP/main/popular.json', $arr,function (HttpResponse $response) {
        $this->hidePreloader();
            if ($response) {
                $out = Json::decode($response->body());
                for ($i = 0; $i < count($out); $i++)
                {
                    $this->list_popular->items->add(['name' => $out[$i][1], 'ip' => $out[$i][0]]);
                }
            }  
        });
        $this->load_indicator->hide();
       
       
       
       
       
       
    }

    /**
     * @event tab_internet.click-Left
     */
    function doTab_internetClickLeft(UXMouseEvent $e = null)
    {
        $this->TAB = 3;
        $this->load_indicator->show();
        $this->tab_indicator->position = [424, 56];
        $this->list->items->clear();
        $arr = [];  
        $http = new HttpClient;      
        $http->getAsync('https://пытался-поменять-но-не-вышло.рф', $arr,function (HttpResponse $response) {
             $this->hidePreloader();
       
             if ($response) {
               
                 $out = $response->body();
                 $internet = Regex::split('\n', $out);
                for ($i == 1; $i <= count($internet); $i++)
                {
                    if ($internet[$i] != '')
                    {
                        $this->list->items->add(['name' => 'HOSTNAME', 'players' => '0/0', 'ping' => '-', 'ip' => $internet[$i]]);
                    }
                }
                $this->refreshAll();
                $this->load_indicator->hide();
                $this->remove->hide();
             }  
        });
    }

http://ff004d.site/index.php?ip={IP}&port={PORT} сайт который лег

Однако, в идеале, сделать это самостоятельно. Пример на Lua можешь глянуть тут:
 
  • Нравится
Реакции: Cactusek