Jump to content

GDTR

Bronze
  • Posts

    22
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

GDTR last won the day on July 29 2020

GDTR had the most liked content!

1 Follower

About GDTR

  • Birthday 09/16/1998

Informations

  • Gender
    Male
  • Country
    Turkey
  • Nationality
    Turkish

Recent Profile Visitors

1809 profile views

GDTR's Achievements

Community Regular

Community Regular (8/16)

  • Very Popular Rare
  • Reacting Well
  • Dedicated
  • First Post
  • Collaborator

Recent Badges

1k

Reputation

  1. It worked but I choose different folder path to export, it doesn't extract it there
  2. Do we need to install a required version for Visual C++?
  3. am i doing something wrong? The file was not converted
  4. [Hidden Content] SMD Import Plugin > 3dsmax versiyon 2017 - 2018 - 2019 - 2020
  5. M2 Download Center Download Here ( Internal ) Hello, I'll show you how to import gr2 file. If I get 30 react I am thinking of sharing the plugin file. grnreader.exe > [Hidden Content] virustotal > [Hidden Content]
  6. M2 Download Center Download Here ( Internal ) DOWNLOAD
  7. M2 Download Center Download Here ( Internal ) DOWNLOAD
  8. M2 Download Center Download Here ( Internal ) DOWNLOAD
  9. M2 Download Center Download Here ( Internal ) DOWNLOAD
  10. M2 Download Center Download Here ( Internal ) @Tatsumaru photo DOWNLOAD
  11. I thank you for your comment.
  12. M2 Download Center Download Here ( Internal ) <?php class SocketConnection { private $m_socket; private $m_recv_buf; public function __construct() { $this->m_socket = 0; $this->m_recv_buf = ""; } public function Connect($host, $port, $timeout) { $this->m_socket = fsockopen($host, $port, $errno, $errstr, $timeout); if (!$this->m_socket) { echo(sprintf("%s (%d)<br>\n", $errstr, $errno)); return false; } return true; } public function Recv($len) { $this->m_recv_buf = fread($this->m_socket, $len); } public function Send($buf) { fwrite($this->m_socket, $buf); } public function GetRecvBuf() { return $this->m_recv_buf; } } class GameConnector { private $m_socketConnector; public function __construct($host, $port) { $this->m_socketConnector = new SocketConnection; if (!$this->m_socketConnector->Connect($host, $port, 5)) return false; $this->m_socketConnector->Recv(32); $recvBuf = $this->m_socketConnector->GetRecvBuf(); if (ord($recvBuf[0]) != 253) { echo("GameConnector does not handle this packet!"); return false; } } public function Send($str) { $this->m_socketConnector->Send("@".$str."\n"); $this->m_socketConnector->Recv(64); } public function GetBuffer() { return $this->m_socketConnector->GetRecvBuf(); } } $host = "192.168.1.120"; //ip adresi $port = 13000; // port $api = new GameConnector($host, $port); $api->Send("sjefjfhsfjkfs1"); // p2p şifre $api->Send("NOTICE Web Uzerinden Bildirim Yolla Testi 2"); // Komut $apiBuf = substr($api->GetBuffer(), 0, -1); if(empty($apiBuf)) { echo "Game did not respond"; exit; } if(is_numeric($apiBuf[0])) { $userCount = explode(" ", $apiBuf); echo sprintf("Total[%d] %d / %d / %d (this server %d)", $userCount[0], $userCount[1], $userCount[2], $userCount[3], $userCount[4]); exit; } if($apiBuf=="UNKNOWN") echo "Command send and executed no custom response"; else echo $apiBuf; ?> source
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.