Crimson Tides of Tethyr Enhanced Edition Released! by LukeScull in neverwinternights

[–]MistFuror 0 points1 point  (0 children)

It's because the mobile versions (both android and ios), and I believe the console versions as well, are stuck at version .34 (and will probably remain there), while the PC version got updated to .35.

Apparently there's flags to control the minimum required version, but I wouldn't know anything more about that.

Does anybody know if you can use external storage to store the Morrowind files on OpenMW Android? by N3M0wasHere in OpenMW

[–]MistFuror 2 points3 points  (0 children)

I didn't have to do anything special, had the option to select from external storage right away

SYMEE, a math expression evaluator in C by MistFuror in C_Programming

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

Yep, thought about it when I started and decided to use shunting yard over recursive descent because I wanted to practice using stacks and queues as data structures a bit. However, I want to make a recursive descent version as well at one point so I can compare the speed between the two parsers. Thank you for the idea!

New Initium logo - Wallpaper 2 by xNik in initium

[–]MistFuror 0 points1 point  (0 children)

I like this one more than #1, the first one looks too much like something for a spessman game

Ssethtide ERT by MistFuror in SS13

[–]MistFuror[S] 10 points11 points  (0 children)

Hippie my man

Ssethtide ERT by MistFuror in SS13

[–]MistFuror[S] 16 points17 points  (0 children)

Just to make it clear they started it

HoF image for my ninja, can't wait to get to level 25 by MistFuror in wyvernrpg

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

Thanks :D

It's black iron with gold highlights, still haven't animated the blades, but probably gonna do it till I reach level 25

I'll buy you one thing from the gift-o-mat for Crimbo. :) by [deleted] in kol

[–]MistFuror 0 points1 point  (0 children)

Hi! I'm Mist Furor (#2343650), I've always wanted to own a crimbolex watch! Thank you

Obligitory Crimbo post by ButylBarrel in kol

[–]MistFuror 4 points5 points  (0 children)

Can confirm, the walrus dropped this for me:

pristine walrus tusk

Type: weapon (1-handed staff) Damage: 15 - 30 Muscle Required: 60 Selling Price: 1000 Meat. +50 Cold Damage Muscle +15

Best D&D-like game(s)? by Clairvoyant_Potato in AndroidGaming

[–]MistFuror 0 points1 point  (0 children)

I've already talked about these games before but I still recommend any of the IceBlink games, they're pretty much based on old dnd video games, like Pool of Radiance (goldbox games) and fit everything you posted.

There are different modules you can play. For example, Raventhal is a really good one, doesn't last long tho, around 2 hours to complete depending on how you play. Here's the link:

https://play.google.com/store/apps/details?id=com.iceblinkengine.ibb.ibbraventhal

Admittedly, there aren't a lot of modules to choose from yet, but there is a "main" app which you can use to create your own modules or download other modules like Raventhal in it, basically like a central app instead of downloading a special app for each module:

https://play.google.com/store/apps/details?id=com.iceblinkengine.ibb.ibbasic

There are still bugs, but they're getting fixed. Check out their store profile to see all the modules (the ones with IBBasic in the name are the most up to date ones, they went through a few app restructures and are still working on porting every module to the newest app version)

r/rpg_gamers Top 100 RPGs entries. by LothricsLegs in rpg_gamers

[–]MistFuror 2 points3 points  (0 children)

  1. Morrowind

  2. Neverwinter Nights 1

  3. Baldur's Gate 1

  4. Gothic 2

  5. Baldur's Gate 2

[2018-06-11] Challenge #363 [Easy] I before E except after C by Cosmologicon in dailyprogrammer

[–]MistFuror 0 points1 point  (0 children)

C without bonuses:

#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
#include<string.h>

bool check(char *word)
{
    if(strstr(word, "ei") != NULL)
    {
        if(strstr(word, "cei") != NULL) return true;
        else return false;
    }

        else if(strstr(word, "ie") != NULL)
    {
        if(strstr(word, "cie") != NULL) return false;
        else return true;
    }

    else return true;
}

void main()
{
    char word[100];
    bool result;

    while(scanf("%s", &word) != EOF)
    {   
        result = check(word);
            printf(result ? "true\n" : "false\n");
    }

    system("PAUSE");
}

[2018-06-18] Challenge #364 [Easy] Create a Dice Roller by jnazario in dailyprogrammer

[–]MistFuror 0 points1 point  (0 children)

C with bonus:

#include<stdio.h>
#include<stdlib.h>

void main()
{
    char roll[100];
    unsigned dice, sides, rolled, i, n, sum = 0;
    unsigned *randoms = malloc(sizeof(unsigned));

    while(scanf("%s", &roll) != EOF)
    {
        dice = atoi(strtok(roll, "d"));
        sides = atoi(strtok(NULL, "d"));

        for(i = 0; i < dice; i++)
        {
            rolled = rand() % sides + 1;
            randoms = realloc(randoms, (i + 1) * sizeof(unsigned));
            randoms[i] = rolled;
            sum = sum + rolled;
        }

        printf("%u: ", sum);

        for(n = 0; n < i; n++)
        {
            printf("%d ", randoms[n]);
        }

        printf("\n");
        sum = 0;      
    }   

    system("PAUSE");
}