While I haven't got screenshots yet, I am coming up to a point with this new map where a alpha version could be released soon. For those who are unaware, I am working on a Metroidvania Parkour map using mods. I intend to get a version out before October 3rd (due to Smash 4...) which will have a tutorial world for basic Parkour (for those who have never played a Parkour map, let alone one with mods) and then a level based on the first item pickup, the Hookshot.
Bored? Random IC2/Forum chat
- SirusKing
- Closed
-
-
First 1.8 mod out: http://www.minecraftforum.net/…1-8-source-code-available
-
That's been out for a long time...
-
FTB Forums has one hell of a spambot problem >.>
I think they need more dragon admins instead their admins are cats
-
FTB Forums has one hell of a spambot problem >.>
I think they need more dragon admins instead their admins are cats
That's the problem. Almighty Dragon Lord Moderators keep Spambots away, while cats attact them. -
Meow!?
I'm not an ordinary cat tho.
-
Woof!
The level of OPness on Forgecraft exceeds 9000, since apparently a UU ocean age isn't enough, a destabilised redstone age is needed to power it. Can't imagine how many hours Player's cried over it.
-
Meow!?
I'm not an ordinary cat tho.
You are no ordinary cat...you are an exosuit disguised as a cat being controlled by a tiny cat perched on top of it's head. Yes. That's how it works. Cyborg cats > real cats
Chocohead: How do they turn molten redstone into EU?
-
Chocohead: How do they turn molten redstone into EU?
Not sure, but I think they're just generating RF, and using some method to convert it. Unless you can fuel Railcraft steam boilers with it (which I don't think you can). -
Even if you don't code, you can probably guess what I did wrong here xD
-
Even if you don't code, you can probably guess what I did wrong here xD
My guess (based on VB knowledge) is that you're currently calling for events that don't exist yet in your code.EDIT: Scratch that, you're calling for Baubles interaction when Natura is installed. Well done...
-
Even if you don't code, you can probably guess what I did wrong here xD
Okay I gonna shoot you for that piece of Code, not because of the small derpup on the Natura thing, but for every usage of the word "if" in it. Also I gonna shoot you for every "else" you made in this Code Block. Edit: Oh and also for every Bracket inside the Main Block too. I think I should use a Machine Gun for that.
You know how to do it properly? properly is like this:
Codebaubles = Loader.isModLoaded("Baubles"); natura = Loader.isModLoaded("Natura"); frails = Loader.isModLoaded("floatingrails");
And you made 5 Lines of Code where only one was needed and that 3 times in a row.
-
Why am I failing at my own puzzle?
-
Experience and knowledge are not failproof :3
-
This space intentionally left blank
-
Okay I gonna shoot you for that piece of Code, not because of the small derpup on the Natura thing, but for every usage of the word "if" in it. Also I gonna shoot you for every "else" you made in this Code Block. Edit: Oh and also for every Bracket inside the Main Block too. I think I should use a Machine Gun for that.
You know how to do it properly? properly is like this:
Codebaubles = Loader.isModLoaded("Baubles"); natura = Loader.isModLoaded("Natura"); frails = Loader.isModLoaded("floatingrails");
And you made 5 Lines of Code where only one was needed and that 3 times in a row.
Ok, you probably have a good point xD
But, that means in the future it'll look like this:
Which is is eh, since I'd rather not use a ternary thingy when I don't have to (it's not very pretty to look at).
There still is another way to simplify this though, and just for you, I'll do that
-
Boom, headshot. Do not use the terniary operator if the outputs are true and false.
natura = (IEConfig.naturaSupport && Loader.isModLoaded("Natura"));
The && Operator stops executing Code once the first condition is false, since the outcome would always be false anyways. Those Operators are all optimized in that way. The || Operator stops executing Code once the first condition is true since it would be true in the end anyways.
While the Terniary Operator has those optimizations too it is very hard to read the Code if you use it for booleans.
-
Poor ForgeDevName xD
-
Wow. So that Boni guy becomes lead TiCon developer, and 2 days later 90% of the bugs are fixed, and all the half-inplemented features are finished. I don't think anybody's gonna miss mDiyo
Still waitin on Tinkers Gregworks though
-
If thats true then I might try getting the two to work again.
As a side note, any ideas?