Jump to content

Omega Haxors

Vintarian
  • Posts

    203
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Omega Haxors

  1. I made a mod to give almost all crafted blocks speed bonuses. The exception are 'cheap' blocks like dirt get a lesser bonus and the metal blocks get a bigger speed bonus. Just waiting on a fix for the ModMaker.exe since it's glitching out making the update impossible to publish, will let you know when it's fixed.
  2. My base looks like a joke because the floor is pathing. Support.
  3. I can help here, I had to master the lighting system essentially to get my mod to work. There are 3 types of light: Sunlight - This casts down from the sky to the ground. A rating from 0-22 is defined by the JSON in your world file. Every light level blocked reduces this. Unlike what you might expect, light level produced by time of day is not affected by this, that's done on its own separate thing during rendering or something. This means that anything that checks light, unless it also checks time, won't care if it's day or night. It will treat the block as fully lit if it's exposed to the sky. Block Light - Same thing as sunlight, though the 'brightness' of block light is 1/3rd or put another way: a sunlight of 6 overpowers a block light of 18. This reduces by 1 per distance from the block emitting the light. By far the simplest light source type in the game. Entity Light - This light value works like block light except it has half the range: With each block reducing 2 levels of light. This isn't actually tracked by game itself but it can easily be inferred by simply reading the "V" of its HSV level and doing some simple math. Entity Light sources include players holding light sources (fun fact: you can put colored glass in lamps to color it) entities that are on fire, dropped light sources and spider mechanicals attacking you. If it's an entity casing a light, it's Entity light. All lights have an HSV value, yes, even sunlight. (This can be defined in the world JSON) Hue determines the color, Saturation determines how much color, and Value determines the brightness of the color. In the case of Entity Light (and potentially all light), V determines the strength.
  4. Huh seems that the chisel recipe for lamellae gives half as much bits as it should. That's probably a bug. EDIT: Yeah it is. Scales are supposed to be the ones that give half material. The clear solution here is to make lamellae cost half as much to make in the casting process, maybe then people would actually use it.
  5. New update which adds clothing/armor handing, buffs energy gain, and adds a new command /exposure
  6. It takes like 30 hits to kill them with the torch and they deal like an 8th of your health if they hit you. Even if you do kill them, another one will spawn in its place. Notice how I have half my health missing? That's from when I thought it was a good idea to try and fight back, yeah it didn't work. Even if I did have a proper weapon, it's going to break in like 4 kills anyway which is going to require I stay put for a bit to, oh wait there's 2 more now I have to deal with.
  7. Perfectly sums up the design flaws of the game. I'd like to add another that I recently discovered: Drifters are overpowered in the early game: Look at this and tell me if you think this is acceptable in the early game. It's like, no matter where you go you're constantly harassed by boatloads of enemies that you can't reasonably deal with. Don't think you can escape up a mountain because not only will you be surrounded by enemies, but you'll also have nowhere to go and will be trapped forced to either run past them or take massive amounts of fall damage.
  8. Wait, what do you have to do to get your entire game account banned??
  9. The only purpose of wolf pups is to resell them. You can place them, but the instant they grow up they'll attack you.
  10. Thanks for making the new player experience better, spawning in the pitch black was always awful. Also super appreciate opening up the API some more, as there were some things private that didn't need to be.
  11. It would be really cool if you could stack the armors by just clicking them on top of each other. Using a similar design to the Consolidating Items/Blocks suggestion, clicking an armor on another armor combines them. Right clicking (like you would do to split a stack) would take an armor type off allowing you to split them once again.
  12. The current registry is a complete mess of blocks. Since each item variation is essentially its own block, that means there's a crapton of superfluous blocks which only exist because they have to. Make no mistake, it's really awesome to see the 20+ variations of each block type and it's a part of what makes the game special, but it also feels really inefficient and leads to issues such as your inventory being clogged up by multiple different types of the same item. Here's a proposal to fix this one and for all. Items are generated in the registry in a very formulaic way. This is good because it's efficient and easy to work with. What I'm proposing is that that format be brought into the game itself. Lets use stones for an example, the kind you can fit in your hand and throw. They can be quickly described by a simple grid: [rock type],[containing ore & richness] so there's 1 item for each rock multiplied by 1 item for each richness and within that another multiplication for each. What starts as 2 axis (one containing 2 axis within itself) has become hundreds of items. Now lets just take all that, throw it in the trash and replace it with this: Item: Stone - This is essentially just a generic item representing stones Tag: Material - this defines what material properties the stone will take. In this case it's Granite. Tag: Ore - this defines what ore is currently within the item itself. Right now it contains copper, but this can be empty. Tag: Richness - this subtag for the Ore tag defines how rich the ore is. Right now it's poor. Already this is a lot easier to work with both on the intuitive level, and also on the coding level. If you wanted to create a 'spawn item' command, all one would have to do is say "/spawn stone granite copper rich" and just like that, there you have it. Here's an even more fun reason to do something like this however: Item stacking. One problem with games that have various item variations is that they don't stack in the inventory, but using this system they can very easily be made to. Here's an example using the logic from the last example that should be very intuitive. Item: Stone Material: Granite Contains Ore: No Amount: 10 Material: Granite Contains Ore: Copper Richness: Very Rich Amount: 10 Richness: Bountiful Amount: 4 Richness: Crystal Amount: 1 The item stack has 10 normal granite rocks, 10 very rich copper granite rocks, 4 bountiful copper granite rocks, and 1 crystal copper granite rock, for an itemstack size of 25 That's right, this system allows for the possibility of MULTIPLE ITEMS in the same inventory slot, as long as they're the same type of item. Since they all share behavior, they all act exactly the same when used, no need to define each and every one individually. For exceptions, like not all rocks can be used for knapping, you can simply read the value then compare to a table when relevant. How will this impact gameplay? Simple. Whenever you use an itemstack, it just picks the items randomly, with a weighted chance. To reference the last example, if you picked up 2 Basalt rocks you'd be far more likely to throw a Granite rock (10/12 chance) than to throw a Basalt one (2/12 chance) and you would never throw the ores (since you can't throw ores). If the player wants to 'spread' out the stacks (for example, to sort them) you can just split the item out. For example if you split the stack in half, the items will be distributed at random between the two stacks, giving you a chance to sort various items of the same type. Likewise, you can choose to stack the items together if you don't care and just want to save inventory space. Those familiar with the minecraft bundle should have a good idea of what game design this system serves to purpose. Intuitive on a player level, immersive, and intuitive on a coding level.
  13. There was an idea early on to allow the pounder to break apart ore blocks in order to get double ore yield of of it. This thankfully did not make the cut: DO NOT DO THIS! Modded minecraft has taught me that ore duplication ruins the game. How? Well imagine you have a magic box that doubles every ore you get. Following me? Well once you have it, essentially all your ore is doubled when converted into ingots, pretty nice, right? It's not, and let me tell you why: when you're starting up a new world, you know this exists, so you start stockpiling ore. Now you feel like crap every time you have to smelt an ore because the back of your mind is nagging you saying "you could have gotten 2 out of that" and it just feels bad. This universally leads to FOMO and toxic optimizing. Things don't stop there, it gets worse. As Modded advanced, everyone was trying to one-up each other which lead to ore tripling, then ore quadrupling, you get the idea. Eventually it got so ridiculous that one ore produced TWO BLOCKS worth of ingots out of a single ore. Yes. Two blocks!! Ores weren't treated as being worth anything since their value was completely arbitrary based on what mods you had installed. Anyway, I think there's a better solution to all of this that not only fixes the problem but opens up an exciting new avenue to build off of: Ore Extracting and Trace Minerals! To start off, you put any rock into the pounder to get dust. Then you run that through an extractor. After some processing you'll find tiny little amounts of trace mineral. Over time these accumulate enough that you can make an ingot. What makes this exciting is that you can do the same to ore powders. The yield will be lower than the old method, but you'll get purified metal out instead. This metal when processed will be better than the normal metal, similar to how meteoric iron outperforms normal iron. Here's where things get exciting: No matter what you destroy, be it a rock or an ore, you'll get a byproduct. These byproducts can be any ore, though it weights based on the stone type or ore type you process, and if you're lucky you might find trace amounts of rare earth material. These rare earth metals can eventually accumulate and you can use them to make a new upgrade for your steel tools: Stainless steel! You won't gain them any faster by using stones or using ore, but when processing ore you'll be getting purified metal in the process, so you may as well throw them in there. Not only that, you can also crush down already-smelted ingots and put them through to purify them and obtain trace material that way too. This system gives benefits for using it without invalidating the older methods nor punishing you for processing all your ore early, but instead rewarding you for using the new method. Even if you don't have any ore to process it's no big deal; you're not going to be locked out of any content since you can still pound rocks/ingots to the same effect.
  14. I was wondering why the fix wasn't implemented properly sooner. Then I looked at the code handling armor. Yeah. That's why. Unless you wanna go over every single recipe manually one-by-one...
  15. Very simple mod. Allows you to make the Leather Jerkin by using a Gamboised recipe. Intended to fix the problem of requiring leather for high level recipes.
  16. I like the idea of durability being linked to tool use, but material loss being dictated by the use of the whetstone. Gives an option for those who want to save up on metal (essentially reforging) while giving a more convenient but lossy method for those who prefer faster gameplay. It also opens up the possibility of tools being better when sharper without being too much of an annoyance. Those who want to use up a ton of metal can experience a really fast paced experience with tools that shred through mountains while those who are more patient can simply use their tools down until they're too dull to be usable, then reforge. Ultimately the best experience is going to be somewhere in the middle and will change based on how much the player values their time verses their resources. Those playing singleplayer will prefer stronger faster tools, while those in multiplayer can instead use those materials to make the 8th set of plate armor.
  17. I figured out why it broke, turns out that the armor system got a complete overhaul. Sorry for taking so long to get to it, but I've ported it over to the new system, included the new armors, and now it's available on the ModDB.
  18. After all this time, I'm updating it, and also uploading it to the mod database.
  19. Yep time for another cool mod idea that I will either finish in a week, or leave on the shelf for literal years. Overpowered spells. You've unlocked the ability to make your wishes a reality. Whatever you want, you can do it. At a cost. In fact, the cost is so high that it's not even worth doing in the first place. Oh well. Come up with some "overpowered" spell ideas for an end-game magic system. Stasis - Time flies when you're having fun, and by 'fun' I mean a ball of time-nullifying magic binding to your bones. Skip the day like you're using a bed, but without losing hunger. Revert - Isn't it lame how your tools break down over time? Turn back the clock and watch as your tools unbreak before your very eyes! Chaos - Unlike ordinary food which breaks down over time, Chaos food breaks down instantly! Chill - Open a portal to the Ice Realm (otherwise known as the 'north pole') and turn the nearby vicinity into frost and snow and cooling it (and you) dramatically. Heck - Open a portal to Heck (otherwise known as 'the nether') and watch as the environment boils and burns, heating you (and everything nearby) in the process. Anchor - Perform a ritual to ground yourself to the mortal realm, restoring your stability to full instantly. Blood - Heart aflutter, on the brink of collapse; accept his offering and feel the crimson gift draw into your very veins. Feast - Stomach rumbling, things are looking grim; accept his offering and feel your innards churning once more. Sunshine - Close your eyes, imagine yourself in a better place. The sun is just around the corner. Nightmare - The darkness closing in. Open your eyes, your world is about to get a whole lot worse. Offset - Have you ever wanted to take a plot of land and just kinda... rip it out of the ground? No. Well now you can! Skybase! Drought - A haiku: Big annoying lake. Stands in my way and looks ugly. But not any more. Drench - Go a little overboard on the desertification? Need a new lake? We got you covered. Soar - Take to the skies! Hope you brought wings because there's only one way down. Meteor - A meteor will crash nearby. Probably on you. Absolutely on you. Obsidian - Obsidian is immune to lava. Step 1: cover yourself in obsidian. You can figure out the rest. Howl - A police siren makes every wolf chain howl for a few hours, preventing them from ambushing you. Blink - You blink and suddenly you're at a random place at a random time. How does this keep happening? Gravity - Clearly you don't understand the gravity of the situation. Your reasoning is completely upsidedown, side-to-side. Hey, I think I saw a youtube video about this. Wealth - Wish fortune upon your allies, and cast poverty upon your enemies. Well, only the former. And not for yourself, but for the traders who seek to offer you goods. Macro - Suddenly out of the blue, you are expand and expand and expand. Before you know it, you're the size of a building. Hey, I think I read a comic about this. Light - Did you know that moths are passionately aroused by light? It's true. With this spell, you'll become a beacon of insect tantalization for the whole night. Dark - Wrap yourself in darkness and fade into obscurity. Literally. You'll be impossible to see, but won't mask that odor. You'll need to cast Shower for that. Instant Break - Instantly break any block, no question. Just one. One. Choose wisely! Magnet - Don't you hate it when you try to trade something and it just goes yeeting into a nearby person because they had a magnet on? Be that person. Nuclear - ICBM: Intense Casting of Block-deleting Magic Turbo - Fast. Fast? Fast! Gotta go fast! Faster faster fasterfasterfaster. Yeaah! Chili dogs! 3D - "What do you mean the game's already 3D? It didn't even come with 3D glasses, that's false advertising." Secret - What does it do? Nobody knows. If I told you then it wouldn't be a secret. Swap - Swap positions with a random entity. Anything. Could be an animal, an item, or even another player.
  20. The dreaded '?' Check your JSONs. The textures aren't being loaded properly.
  21. It's weird. The spawning feels way too low once you have a basic weapon but before that you're just harassed with a crap ton of monsters you don't really have a means of dealing with. As my time building a minecraft modpack has proven, monster spawning is an impossible thing to get right, though I find it's better to have too little than too much. This looks like a case of bad design within the spawning algorithm itself. My guess is that being underground is forcing all of the spawns to happen underground in the same structure you're currently loaded in. Doesn't matter how low the spawning chance or mob cap is if 100% of the enemies spawned WILL appear right next to you. How would you fix it? Probably by reordering the algorithm a little bit. Swarming can be fun so there should still be a rare chance that it happens, but it shouldn't be based on things like the environment. Instead of having spawning just go off of all the time, have it happen in waves. Probably best to do it twice, once at sunrise and one at sunset. During this time, monsters will start spawning like normal in random locations like it does now, though much faster and with a higher monster cap. Then it becomes a matter of surviving. If you kill a monster it won't just come back until the next spawning wave. Naturally monsters also spawn like they do already within temporal storms. They're supposed to be dangerous.
  22. Omega Haxors

    Class survey

    Malefactor is a great pick if you want an easy early game and to make it rain later on. Probably one of the most money-oriented classes out there if you don't mind taking an extra hit or two to kill a drifter. Clockmaker used to be my 'trader' class of choice due to the movespeed, but malefactor is just way better at fundraising. He's also got the benefit of more starter clothing, which makes traversing trade routes less punishing in the winter.
  23. Download Toggly mod. It was made specifically for this reason. The game expects you to hold controls down for way too long which makes the game physically painful to play.
  24. It's time for the official pre-release of Immersive Phototrophy. Hate eating all the time? Well boy do I have the solution for you. Become a plant. They can make energy from the sun. Epic. Simply type /photosynthesis to become a plant. Type it again to return to monky. While a plant, you restore energy when in light. Not just sunlight, but also held light, block light, and even light coming off of entities. Not only that, but your plant skin will generate sugar and inject it right into your blood, giving you a sugar rush. The more light, the faster you go. All values are based on real life. A lot of research and effort went into ensuring a perfect balanced, backed up by real world values. Due to a mistake in conversions, energy was rewarded half as much as it should have been, so it's been doubled. Not only that, but clothing/armor now blocks sunlight exposure, which makes your photosynthesis less effective. A new /exposure command has been added to provide useful information about the current light level/exposure. Added oxygen restoration while underwater. Every 1 Calorie/s restored will give you 1 second more breath. Added hard skin trait: All armor-reducible damage is halved Added sterile gut downside: Food is less effective when eaten Please leave feedback after playing, and let me know what you think about the new mechanic. https://mods.vintagestory.at/immersivephototrophy
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.