Eli10293
Spazmatism
So Does The Saw Blade Cut Down Trees And Are All These Mods for R15
- *Sawblade: Boomerang, Good damage
So Does The Saw Blade Cut Down Trees And Are All These Mods for R15
- *Sawblade: Boomerang, Good damage
His requirements are to have crafted a Work Bench and Furnace while my mod is installed.hey how do ya get the master to show up?
I thought about it, but nope, it's just a boomerang type weapon. And yes, they're for R15.So Does The Saw Blade Cut Down Trees And Are All These Mods for R15
As soon as I saw the word 'conveyors', I immediately loved it!
EXACTLY! Who needs complicated hoik systems when you got conveyor belts? You just inspired me to build some farms, whether it be mushrooms, plants, or money! I'll be sure to comment some screenshots on what I built once I'm done.
I Still Like Hoiks ThoughEXACTLY! Who needs complicated hoik systems when you got conveyor belts? You just inspired me to build some farms, whether it be mushrooms, plants, or money! I'll be sure to comment some screenshots on what I built once I'm done.
Yeah, hoiks are cool.I Still Like Hoiks Though![]()
I don't believe they are obtainable yet. Neo said that if you wanted to try them, you needed to use some cheats or FCM. He made them unobtainable for now because he wasn't sure if he fixed every single bug. In other words, the brave people who were willing to try them would try them and see if they worked good.It is wireless transmitter and receiver is obtainable? If it is, how do I get it?
Will these mod's work with tapi r14?
What @DarkAwesome said is correct. But thanks to @The Great Orange, who has done some significant testing, the bugs should be pretty well squished. I'll try to have an update with a way to acquire them uploaded later today. There are a few sprites @Chocosta made for me that I finally worked into the game.It is wireless transmitter and receiver is obtainable? If it is, how do I get it?
R15 introduced the Player.tileTarget field. It allows me to turn this code -Will these mod's work with tapi r14?
Let's say some mods don't work properly on tapi r15. For example: The r14 minion code doesn't work right, and because of that minions deal no damage to enemies. I guess modders still can't figure out the problem.I've seen several people comment that they are still using R14 or R14a. Is there a particular reason people are choosing not to update? I'm aware R15 has some bugs, but so does R14a, as does R14. In my playing and coding I've found the improvements made in R15 have outweighed any newly introduced bugs. I only play Single Player though, so there could very well be a multiplayer issue I'm not aware of.
Well, from looking at the code it looks like the cause might be in the Projectile.cs file, in the Damage() functionLet's say some mods don't work properly on tapi r15. For example: The r14 minion code doesn't work right, and because of that minions deal no damage to enemies. I guess modders still can't figure out the problem.
public void Damage() {
if (Main.projPet[this.type] && !VanillaMinion) { // Vanilla Minion Summarizes a lot of '&& this.type != VanillaMinionProjectileType
return;
}
}
Main.projPet[ProjDef.byName["Notch:WoFMinion"].type] = false; // Makes it not be a pet, so it can do damage
public override void PreItemCheck(Player player) {
Main.projPet[ProjDef.byName["Notch:WoFMinion"].type] = true; // Sets projPet to true in order to summon it
}
// And
public override void PostItemCheck(Player player) {
Main.projPet[ProjDef.byName["Notch:WoFMinion"].type] = false; // Returns projPet to false in order for it to cause damage
}
I don't believe they are obtainable yet. Neo said that if you wanted to try them, you needed to use some cheats or FCM. He made them unobtainable for now because he wasn't sure if he fixed every single bug. In other words, the brave people who were willing to try them would try them and see if they worked good.
What @DarkAwesome said is correct. But thanks to @The Great Orange, who has done some significant testing, the bugs should be pretty well squished. I'll try to have an update with a way to acquire them uploaded later today. There are a few sprites @Chocosta made for me that I finally worked into the game.
It is most definitely my mod. I just tried in Single Player, and placing an item in the Guide Slot caused a crash. I'll look into this now. (I just happen to be coding Neo Devices at the moment).Great mods you have here Neojin! I did however find an issue with NeoDevices in multiplayer. If you try and put a material in the Guide's box (to show you the recipes), the client crashes instantly (the dedicated server keeps running fine though). This happens with all materials I've tried: stone blocks, torches, leather, etc. I'm also quite sure it's NeoDevices as it didn't happen anymore after I disabled NeoDevices.
Anytime!Thank you for answering my question
First, I think it shouldn't happen (what a weird bug...)Is this intential ?