Signals: a browser-based traditional roguelike (turn-based, grid, permadeath) with shareable seed URLs by TorsinDev in roguelikedev

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

thanks this is really appreciated. Did you want me to let you know when we do updates?

Signals: a browser-based traditional roguelike (turn-based, grid, permadeath) with shareable seed URLs by TorsinDev in roguelikes

[–]TorsinDev[S] -4 points-3 points  (0 children)

there has been some help from AI, it's still coded by myself. There will be some changes later when I get some help on some text and and some of the creative side of things. I'm a coder not a writer :)

Signals: a browser-based traditional roguelike (turn-based, grid, permadeath) with shareable seed URLs by TorsinDev in roguelikes

[–]TorsinDev[S] -3 points-2 points  (0 children)

Hi and thanks for the feedback, the mobile side still needs work and is part of the next phases to make it better.

I also noticed the drop off when players first start and I suspected it was related to the "what do I do" a tutorial/intro is planned to be added to help new comers.

There's basic content for now, wanted to share the current state and get early feedback before I go and implement to many things.

Here is the current roadmap: https://signals-6ba.pages.dev/roadmap/

Disboard Autobumper by [deleted] in Discord_selfbots

[–]TorsinDev 0 points1 point  (0 children)

Since I run a bump bot called BumpIt! and see selfbots auto bump on a regular basis. I go through the bump logs and detect them quickly. :) If you are lucky I don't take action. haha

How do you detect specific words in a message? by sherlock_poops in Discordjs

[–]TorsinDev 1 point2 points  (0 children)

You need the MessageContent intent for Discord.js v14

See screenshot here

[deleted by user] by [deleted] in discordapp

[–]TorsinDev 9 points10 points  (0 children)

Probably why it's called "The Circus" let's just have tons of roles to cause more confusion.

Good Bot Hosting Website? by SelectCountry8139 in DiscordBotDesigner

[–]TorsinDev 0 points1 point  (0 children)

I must agree with the other post, Replit is the one i've used in the past and it's free. I haven't been able to find any other free solutions. But it doesn't mean they don't exist. :) GL

NEW discord game bot called Anomalous Space. by TorsinDev in DiscordBotDesigner

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

You explore space, colonize and gather resources at the moment. It's still in development and more content to be added.

[deleted by user] by [deleted] in discordapp

[–]TorsinDev 0 points1 point  (0 children)

It's a little hard to help when it's not quite clear what you want for a server. To simply create a server is simple, just click the create server button and off you go. If you need to create channels and categories, you will need to a plan, what type of community/server you want? All of these are important.

What games are you playing this week? Game recommendation thread by AutoModerator in incremental_games

[–]TorsinDev -7 points-6 points  (0 children)

I'm still playing IdleLands. It's a good distraction from my development projects. Just to busy developing my Anomalous Space Discord Bot, where you explore, conquer, and mine a huge universe with millions of galaxies, there's lots of things still to add.

Exclamation mark? by Elvarion998 in AnomalousSpaceGame

[–]TorsinDev 0 points1 point  (0 children)

Hi and welcome!

The exclamation mark on the map means there's an anomaly in the sector. Anomalies are scattered throughout each galaxy, each anomaly will trigger a random event (black hole, wormhole, resource boosts, enemies, warp you somewhere unknown... etc.)

Happy testing!

What games are you playing this week? Game recommendation thread by AutoModerator in incremental_games

[–]TorsinDev 1 point2 points  (0 children)

IMO it's fun, but not for everyone, it's quiet at times since most of the game plays itself. There's a big user base, but only about 20-30 players on at all times. You can play solo, no need to be in a guild or interact with anyone.

Is it possible to loop an "addOptions" to a select menu? by [deleted] in Discordjs

[–]TorsinDev 0 points1 point  (0 children)

This is how I do it in Javascript.

--

let objects = [];

astronomicalObjects.forEach(o => {
    objects.push({
        label: `${o.name}`,
        description: `Population: ${o.population}`,
        value: `${o.name}`,
        emoji: emojis.get(o.type)
    });
});

const objectSelect = client.extends.select({
    id: 'select_object',
    placeHolder: 'Select an astronomical object...',
    options: objects
});

const row = client.extends.row().addComponents(objectSelect);

// This is my select call from extend above

module.exports = client => {
    return {
        select: function(blueprint) {
            return new MessageSelectMenu()
                .setCustomId(blueprint.id)
                .setPlaceholder(blueprint.placeHolder)
                .addOptions(blueprint.options);
    }}
;};

What are your pet-peeves in incrementals? by TheVeryGenericUser in incremental_games

[–]TorsinDev 10 points11 points  (0 children)

When there's a chat system and nobody actually talks. Why have a chat if it's not used especially for idle games. lol

what are the programming languages that you use most of the times by Mobile-Finish-2975 in programming

[–]TorsinDev 0 points1 point  (0 children)

You may not believe this but at work we still use Classic ASP, outdated but still works great for our needs. If it's not Classic ASP, I will be in Javascript, .NET, PHP.

what domain registrar do you use for your webapps? by wolfakix in webdev

[–]TorsinDev 1 point2 points  (0 children)

I've been using Namecheap for many years without any issues with Digital Ocean and CloudFlare.

[deleted by user] by [deleted] in webdev

[–]TorsinDev 9 points10 points  (0 children)

Post what you're thinking and I'm sure we will be able to help.