新手上路
cod 未出, 想問下有無類似嘅free game
cs go果啲太上一個世代
或者其他free game 都可以推介下
日式rpg, 或者喪屍生存類都鍾意
const community = JSON.parse(application_config.dataset.community);
const tryFetch = (doorid) => {
const form = new FormData();
form.append('sessionid', g_sessionID);
form.append('door_index', doorid);
form.append('clan_accountid', community.CLANACCOUNTID);
fetch('/saleaction/ajaxopendoor', {
method: 'POST',
body: form,
}).then(async (res) => {
const json = await res.json();
console.log(json);
})
};
// 自訂嘗試次數,建議別太高,10次以內足夠,如果race condition不再滿足,或者伺服器修復了,多少次都沒用
// 當然可能有更好的演算法,例如假定首次請求必定成功
// 根據壇友提醒,10次會導致steam後台限制
const tryTimes = 6;
for (let i = 0; i < tryTimes; i++){
tryFetch(1); // petlover 建議把自己最想要的換到第一行
tryFetch(3); // sorcerer
tryFetch(4); // cozyvillager
tryFetch(5); // detective
tryFetch(2); // werewolf, discord有人指出根據提示可能第二個門檢測的優先順序高,放到最後沒準能多成功幾次請求
}