docs/templates/pages/proto/pcbtracker.html

20 lines
1.0 KiB
HTML
Raw Normal View History

2021-12-28 20:54:12 +00:00
{% extends "base.html" %}
2021-12-29 01:41:21 +00:00
{% block title %}pcbtracker{% endblock %}
2021-12-28 20:54:12 +00:00
{% block body %}
<h1><code>pcbtracker</code></h1>
<h2 id="alive"><code>pcbtracker.alive</code></h2>
<h3>Request:</h3>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<call ...>
2022-02-12 08:59:54 +00:00
<pcbtracker method="alive" model*="" hardid="" softid="" accountid*="" agree="" ecflag="" />
2021-12-28 22:29:33 +00:00
</call>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
<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>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<response>
<pcbtracker status="" time="" limit="" ecenable="" eclimit="" >
</response>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
<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 %}