This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
web_apis [2021/06/07 13:49] – Fixes Grabz | web_apis [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{page> | ||
+ | <WRAP centeralign> | ||
====== Web APIs ====== | ====== Web APIs ====== | ||
+ | </ | ||
+ | {{page> | ||
+ | |||
===== Map Browser ===== | ===== Map Browser ===== | ||
Creeper World 1 and 2 do not have an easily readable map browser API and can only be accessed here: | Creeper World 1 and 2 do not have an easily readable map browser API and can only be accessed here: | ||
Line 27: | Line 32: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | * '' | ||
==== CW3 and PF values ==== | ==== CW3 and PF values ==== | ||
* '' | * '' | ||
Line 44: | Line 50: | ||
Below is a list of available parameters to the score query APIs: | Below is a list of available parameters to the score query APIs: | ||
- | * '' | + | * '' |
* '' | * '' | ||
+ | * '' | ||
+ | * CW3: 0, 1 or 2. 0 - All Time. 1 - 3 days. 2 - 1 week. | ||
+ | * PF: 0 or 1. 0 - All. 1 - Month. | ||
+ | * '' | ||
The following arguments are exclusive, i.e. only use one of these at a time, as applicable: | The following arguments are exclusive, i.e. only use one of these at a time, as applicable: | ||
* '' | * '' | ||
Line 257: | Line 267: | ||
let o = 7; | let o = 7; | ||
- | let Custom = (o >> 5 & 1) != 0; //0 | + | let Custom = (o >> 5 & 1) != 0; //false |
- | let Collect = (o >> 4 & 1) != 0; //0 | + | let Collect = (o >> 4 & 1) != 0; //false |
- | let Hold = (o >> 3 & 1) != 0; //0 | + | let Hold = (o >> 3 & 1) != 0; //false |
- | let Reclaim = (o >> 2 & 1) != 0; //1 | + | let Reclaim = (o >> 2 & 1) != 0; //true |
- | let Totems = (o >> 1 & 1) != 0; //1 | + | let Totems = (o >> 1 & 1) != 0; //true |
- | let Nullify = (o >> 0 & 1) != 0; //1 | + | let Nullify = (o >> 0 & 1) != 0; //true |
// | // | ||
</ | </ |