fobe-web/html_assetgame/Game/GamePass/GamePassHandler.ashx

12 lines
206 B
Plaintext

<?php
$action = $_GET['Action'];
$userid = $_GET['UserID'];
$passid = $_GET['PassID'];
if ($action == "HasPass")
{
header('Content-Type: text/xml');
echo '<Value Type="boolean">false</Value>';
}