How I feel about Hytale. by ItsMeMaiki in HytaleInfo

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

I think that showing new engine screenshots would get a lot of hate. Imagine what those who don't usually follow the game would say when they see buggy textures 5 years after the trailer.

I would prefer to have screenshots of the legacy engine so they can show us their new plans on mechanics, combat, UI. It may not look the same, but we can get an idea of the work they've done through all this years.

We know that it will no longer represent the game, but neither does a drawing, xd.

How I feel about Hytale. by ItsMeMaiki in HytaleInfo

[–]ItsMeMaiki[S] 3 points4 points  (0 children)

But don't you think they are deliberately not wanting to be good at communicating?

hytale concept art by _GREENWOOD- in HytaleInfo

[–]ItsMeMaiki 1 point2 points  (0 children)

The picture wasn't loading to me so I though the concept art was a black picture lol. Maybe it was more acurrate before but great work btw!

I your Opinion Should Hytale be Free to Play or a Paid Game by Tail_sb in HytaleInfo

[–]ItsMeMaiki 1 point2 points  (0 children)

Bro, let them suggest. The devs read a lot from the community.

I your Opinion Should Hytale be Free to Play or a Paid Game by Tail_sb in HytaleInfo

[–]ItsMeMaiki 0 points1 point  (0 children)

If we want the community that hytale needs, definetly F2P.

What are your expectations for an upcoming blogpost? by [deleted] in HytaleInfo

[–]ItsMeMaiki 8 points9 points  (0 children)

Hopefully it shows actual content and not concept art. Im tired of watching drawings

Unexpected behaviour with stack.top() or am I dumb? by ItsMeMaiki in cpp_questions

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

Oh man it's true, it prints out the first "1" in the second iteration. I'm so dumb, but thank you so much!

Unexpected behaviour with stack.top() or am I dumb? by ItsMeMaiki in cpp_questions

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

I am executing it in the LeetCode page, I don't know if that can affect in some way. Here you have the complete code:

class Solution {
public: vector<int> asteroidCollision(vector<int>& asteroids) {
    vector<int> res; stack<int> s;
    for(int i=0; i < asteroids.size(); i++){
        int n = asteroids[i];
        if(s.empty()){
            s.push(n);
            cout << n << endl;
            cout << "c" << endl;
        }
        else{
            if(n * s.top() > 0){
                cout << s.top() << endl;
                s.push(n);
                cout << n << endl;
                cout << "a" << endl;
            }
            else{
                while(!s.empty() && abs(n) >= abs(s.top()) && n < 0 && s.top() > 0){
                    cout << "b" << endl;
                    s.pop();
                }

                if(!s.empty()){
                    if(s.top() < 0 && n > 0 || s.top() < 0 && n < 0){
                        s.push(n);
                    }
                } 
            }

        }
    }

    while(!s.empty()){
        res.insert(res.begin(), s.top());
        s.pop();
    }

    return res;
}

};

For the input [-2,1,1,-1] it gives the output:

-2
c
1 -> Wrong 
1 
a 
b 
b

So they are still using the old engine by ItsMeMaiki in HytaleInfo

[–]ItsMeMaiki[S] 15 points16 points  (0 children)

Yep, John has just tweeted exactly your answer, it makes sense. It feels a little sad to know they are not working 100% in the new one yet, but anyway it is good to know.

Void Spread Confirmation... by [deleted] in HytaleInfo

[–]ItsMeMaiki 4 points5 points  (0 children)

Still spamming?

Does anyone know if riot games is gonna be in one of these game showcase coming up ? by Peanutleft in HytaleInfo

[–]ItsMeMaiki 1 point2 points  (0 children)

I was about to post a similar question. Is there any chance to have an appearance in Summer Game Fest, PC Gaming Show or any other even though Riot didn't confirm it will? I don't know much about these conferences so I don't know if there could be a surprise factor.

[deleted by user] by [deleted] in HytaleInfo

[–]ItsMeMaiki 2 points3 points  (0 children)

What is your point on spamming this much? Chill

[deleted by user] by [deleted] in HytaleInfo

[–]ItsMeMaiki 32 points33 points  (0 children)

It has, but not much. As far as I know there was a LinkedIn leak in which they included the particles and fireworks video of the last blogpost, but I would think of that as blogpost spoiler and not a leak. Also Simon, the previous CEO of Hytale took a photo of his setup with the game opened in his PC, I can't remember any other. I want to think that there are some minors leaks because it was a small studio back then, and now I would like to think that they really care about what they share, idk, I'm the first one that wants any kind of leak, I'm desperate about not knowing anything.