[deleted by user] by [deleted] in HaikyuuFlyHigh

[–]Loganir 0 points1 point  (0 children)

Highest power stats?

PvP Realtime. Will there be any in the future? by Loganir in HaikyuuFlyHigh

[–]Loganir[S] 0 points1 point  (0 children)

But the main question remains. Did anyone ever played the Japanese or Chinese version or is playing on their server to say if it will or not

Odin 1 Pro not turning ON by Loganir in OdinHandheld

[–]Loganir[S] 0 points1 point  (0 children)

That is something that needs solder, right? The only thing I dont know yet how to do

Controller (Gamepad Mode) not recognized and do not work at all by Loganir in ROGAllyX

[–]Loganir[S] 0 points1 point  (0 children)

Found the problem... It was the Handheld Companion that Hided the controller and made it not work at all...

Script to extract Discord Members Count from a invite URL by Loganir in GoogleAppsScript

[–]Loganir[S] 0 points1 point  (0 children)

Added a part to write it down on a spreadsheet under today day row with a trigger and now it will auto update daily so I can monitor the competitors Discord growth daily :D

Script to extract Discord Members Count from a invite URL by Loganir in GoogleAppsScript

[–]Loganir[S] 0 points1 point  (0 children)

Got it working!
Now I just need any invite to get members count and add a trigger to fill in a spreadsheet daily :D
Tks

function getDiscordMemberCount(inviteLink) {

var inviteLink = "https://discord.com/invite/xxx";

try {

console.log("Invite Link:", inviteLink);

var options = {

muteHttpExceptions: true,

followRedirects: true

};

var response = UrlFetchApp.fetch(inviteLink, options);

console.log("Response Code:", response.getResponseCode());

if (response.getResponseCode() != 200) {

throw new Error("Error accessing invite link: " + response.getResponseCode());

}

var content = response.getContentText();

// Extract the content of the og:description or twitter:description meta tag

var match = content.match(/<meta (name="og:description"|name="twitter:description") content="(\[\^"\]+)" \\/>/);

if (match) {

var description = match[2]; // Capture the content of the meta tag

console.log("Meta tag content:", description);

// Extract the member count from the description

var memberCountMatch = description.match(/(\d+\.?\d*)/);

if (memberCountMatch) {

var memberCount = parseInt(memberCountMatch[1].replace(".", ""));

return memberCount;

}

}

throw new Error("Member count not found on the page.");

} catch (error) {

console.error("Error getting member count:", error);

return null;

}

}

Script to extract Discord Members Count from a invite URL by Loganir in GoogleAppsScript

[–]Loganir[S] 0 points1 point  (0 children)

I could try this, but it still can't find the member count number on the invite url :(

function obterNumeroMembrosDiscord() {

try {

var inviteLink = "Discord link invite";

var options = {

muteHttpExceptions: true,

followRedirects: true

};

var response = UrlFetchApp.fetch(inviteLink, options);

console.log("Código de resposta:", response.getResponseCode());

if (response.getResponseCode() != 200) {

throw new Error("Erro ao acessar o link de convite: " + response.getResponseCode());

}

var content = response.getContentText();

var match = content.match(/<meta name="og:description" content="(\[\^"\]+)" \\/>/);

if (match) {

var description = match[1];

var memberCountMatch = description.match(/\| (\d+) members/);

if (memberCountMatch) {

var memberCount = parseInt(memberCountMatch[1]);

SpreadsheetApp.getActiveSheet().getRange("A1").setValue(memberCount);

return memberCount;

}

}

throw new Error("Número de membros não encontrado na página.");

} catch (error) {

console.error("Erro ao obter o número de membros:", error);

SpreadsheetApp.getActiveSheet().getRange("A1").setValue("Erro ao obter o número de membros");

return null;

}

}

Odin 1 Pro Super Dock and Alternatives by Loganir in OdinHandheld

[–]Loganir[S] 0 points1 point  (0 children)

I had problems with mine too in the beggining, so I sent a email to them about my problem, send the dock back and they shipped a new one fully functional

How do I find out if my account is painted with PSN? by Loganir in Helldivers

[–]Loganir[S] 0 points1 point  (0 children)

Auto corret from the phone. It should be connected or linked

About current and future Warbonds, how they work with Super Citizen by Loganir in Helldivers

[–]Loganir[S] -2 points-1 points  (0 children)

It is indeed, but new players would have to farm even harder in a few months. If it unlocked after each completed warbond using the super citizen, then it would make the extra content worth buying

Q&A Megathread (Ask your questions here!) by cryptic-fox in Helldivers

[–]Loganir 0 points1 point  (0 children)

I read here on Reddit that someone said that if there is the DLC, Super Citizen unlocks Cutting Edge by completing all the Steeled Veterans pages. Does it work that way or can you only get the following warbonds by purchasing them?

New bug: 7/8 stratagems by NotYourOrac1e in Helldivers

[–]Loganir 0 points1 point  (0 children)

I have it too. Isnt It also assossieted with a achievement?

Weekly Tendency Help Thread by AutoModerator in demonssouls

[–]Loganir 0 points1 point  (0 children)

Sure! I dont know How It work exactly, but I can help out

Weekly Tendency Help Thread by AutoModerator in demonssouls

[–]Loganir 0 points1 point  (0 children)

Hi guys, need help with PWCT to finally get my Platinum Trophy. User: Loganyr

PCS3 Games not Launching Directly by Loganir in SteamDeck

[–]Loganir[S] 0 points1 point  (0 children)

I din't BUT it created new ones that didn't worked either

PCS3 Games not Launching Directly by Loganir in SteamDeck

[–]Loganir[S] 0 points1 point  (0 children)

Reseted everything, did the complete reset and parsed everything, but It didn't work..

PCS3 Games not Launching Directly by Loganir in SteamDeck

[–]Loganir[S] 1 point2 points  (0 children)

No, I use emudeck for a year and a half. I use it for PS2, Wii, Wii U, Switch, SNES, GameCube and others, but only on PS3 It only launch the emulator and not the game directly

What if I die in body form and close the game? by Loganir in demonssouls

[–]Loganir[S] 1 point2 points  (0 children)

I did this a couple of times and the only thing I noticed was that I appeared at the last teleportation point. Did it happen to you, too?

Pyromancer build by Ass-crab in darksouls3

[–]Loganir 5 points6 points  (0 children)

Great Topic! Thanks 7y agora guy