20 lines
1.0 KiB
HTML
20 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}pcbtracker{% endblock %}
|
|
{% block body %}
|
|
<h1><code>pcbtracker</code></h1>
|
|
<h2 id="alive"><code>pcbtracker.alive</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
<pcbtracker method="alive" model*="" hardid="" softid="" accountid="" agree="" ecflag="" />
|
|
</call>{% endhighlight %}</pre>
|
|
<p><code>ecflag</code> here is determining if the arcade operator allows the use of paseli on this machine.</p>
|
|
<p><code>agree@</code> and <code>ecflag@</code> appear to either be totally non present, or present with a value of
|
|
<code>"1"</code>, but then again I may be reading the code wrong, so take that with a pinch of salt.
|
|
</p>
|
|
<h3>Response:</h3>
|
|
<pre>{% highlight "cxml" %}<response>
|
|
<pcbtracker status="" time="" limit="" ecenable="" eclimit="" >
|
|
</response>{% endhighlight %}</pre>
|
|
<p>As you might guess, <code>ecenable@</code> is therefore the flag to determine if paseli is enabled (i.e. the
|
|
arcade operator and the server both allow its use).</p>
|
|
{% endblock %} |