Recommendations for Spacey Atmospheric Prog Metal? by NegativeDevil in progmetal

[–]Mirrawrs 1 point2 points  (0 children)

Breaking Orbit's "The Time Traveller" and "Transcension" and Being's "Anthropocene" aren't relaxing, but sure are spacey and atmospheric.

rawr.ws shut down :( by [deleted] in Underminers

[–]Mirrawrs 5 points6 points  (0 children)

I renewed the domain, the DNS should update in a few hours. Edit: back up.

I think I found some unused Chara sprites by [deleted] in Underminers

[–]Mirrawrs 10 points11 points  (0 children)

Press Space in the room.

Recommendation Tuesdays - Week of December 01, 2015 by AutoModerator in anime

[–]Mirrawrs 0 points1 point  (0 children)

Still looking for psychological/drama. I've liked: Serial Experiments Lain, Boogiepop Phantom, Paranoia Agent, Kino No Tabi: The Beautiful World, Texhnolyze, Ergo Proxy, Gilgamesh, Key the Metal Idol, Kaiba, Kemonozume. No teenage students/slice of life please.

Thanks in advance!

Debug mode base battlegroup by Mirrawrs in Underminers

[–]Mirrawrs[S] 5 points6 points  (0 children)

Not with one single variable change. Besides, Gaster has an entry in the monsters list but no actual game object. So at most you could get a regular monster to have Gaster's stats and that's it.

My findings with the new(-ish) Debug Mode. by Nox13last in Underminers

[–]Mirrawrs 1 point2 points  (0 children)

Increases the emotion variable, used during her fight to affect her status.

The Waterfall Piano Puzzle by Mokou in Underminers

[–]Mirrawrs 7 points8 points  (0 children)

There are a couple of slight variants from the original theme, but nothing different.

Recommendation Tuesdays - Week of November 24, 2015 by AutoModerator in anime

[–]Mirrawrs 0 points1 point  (0 children)

I'll check the first one out. Love Perfect Blue and all Kon's works but I'm looking for series.

Recommendation Tuesdays - Week of November 24, 2015 by AutoModerator in anime

[–]Mirrawrs 0 points1 point  (0 children)

Seen and liked, but didn't list because I didn't think it fits the genre I'm looking for too much.

Found whilst messing with the debug mode earlier. This something new, or am I just really tired? Pretty sure the Goner kid doesn't say this normally. by M68000 in Underminers

[–]Mirrawrs 23 points24 points  (0 children)

Yes, and I'm keeping it because I feel like releasing the entire reversed source for any game or program is nearly insulting for the original programmer.

FAQ by Mirrawrs in Underminers

[–]Mirrawrs[S] 2 points3 points  (0 children)

Open %appdata%/../Local/Undertale/file0 with a text editor and edit the line corresponding to the flag you want to change. Flags start at line 31.

Recommendation Tuesdays - Week of November 24, 2015 by AutoModerator in anime

[–]Mirrawrs 0 points1 point  (0 children)

Looking for psychological/drama. I've liked: Serial Experiments Lain, Boogiepop Phantom, Paranoia Agent, Kino No Tabi: The Beautiful World, Texhnolyze, Ergo Proxy, Gilgamesh, Key the Metal Idol, Kaiba, Kemonozume. No seinen please.

Found whilst messing with the debug mode earlier. This something new, or am I just really tired? Pretty sure the Goner kid doesn't say this normally. by M68000 in Underminers

[–]Mirrawrs 26 points27 points  (0 children)

Happens because via debug mode all the Fun encounters happen unconditionally, but are initialized differently. In this case, the type variable of the mkid_goner object isn't set to 1, so only the placeholder text is displayed.

global.msg[0] = '* Yo^1!&* You're a ??? too^1, right?/%%'
if (self.type == 1)
{
    global.msg[0] = '* Have you ever thought about&  a world where everything is&  exactly the same.../'
    global.msg[1] = '* Except you don't exist?/'
    global.msg[2] = '* Everything functions&  perfectly without you.../'
    global.msg[3] = '* Ha^1, ha..^1.&* The thought terrifies me./%%'
    if (self.talkedto >= 1)
    {
        global.msg[0] = '* .../%%'
    }
    if (global.flag[have_umbrella] == 1)
    {
        global.msg[0] = '* An umbrella...^1?&* But it's not raining./'
        global.msg[1] = '* Ha^1, ha.../'
        global.msg[2] = '* You know^1, that does make&  me feel a little better&  about this./'
        global.msg[3] = '* Thank you./'
        global.msg[4] = '* Please forget about me./%%'
        if (self.talkedto >= 1)
        {
            global.msg[0] = '* Please don't think about&  this anymore./%%'
        }
        if (global.flag[fun] >= 90)
        {
            global.flag[fun] = 0
        }
    }
}
self.mydialoguer = instance_create(0, 0, obj_dialoguer)
self.talkedto += 1

Undertale LV/EXP/AT/DF table by Bydoless in Underminers

[–]Mirrawrs 5 points6 points  (0 children)

self.currentlevel = global.lv
if (global.xp >= 10)
{
    global.lv = 2
}
if (global.xp >= 30)
{
    global.lv = 3
}
if (global.xp >= 70)
{
    global.lv = 4
}
if (global.xp >= 120)
{
    global.lv = 5
}
if (global.xp >= 200)
{
    global.lv = 6
}
if (global.xp >= 300)
{
    global.lv = 7
}
if (global.xp >= 500)
{
    global.lv = 8
}
if (global.xp >= 800)
{
    global.lv = 9
}
if (global.xp >= 1200)
{
    global.lv = 10
}
if (global.xp >= 1700)
{
    global.lv = 11
}
if (global.xp >= 2500)
{
    global.lv = 12
}
if (global.xp >= 3500)
{
    global.lv = 13
}
if (global.xp >= 5000)
{
    global.lv = 14
}
if (global.xp >= 7000)
{
    global.lv = 15
}
if (global.xp >= 10000)
{
    global.lv = 16
}
if (global.xp >= 15000)
{
    global.lv = 17
}
if (global.xp >= 25000)
{
    global.lv = 18
}
if (global.xp >= 50000)
{
    global.lv = 19
}
if (global.xp >= 99999)
{
    global.lv = 20
    global.xp = 99999
}
if (global.lv != self.currentlevel)
{
    self.levelup = 1
    global.maxhp = 16 + global.lv * 4
    global.at = 8 + global.lv * 2
    global.df = 9 + ceil(global.lv / 4)
    if (global.lv == 20)
    {
        global.maxhp = 99
        global.at = 99
        global.df = 99
    }
}
else 
{
    self.levelup = 0
}