This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Messages - Badger
Pages: 1 ... 24 25 26 27 28 29 30 [31] 32 33 34 35 36 37 38 ... 308
601
« on: June 09, 2018, 11:46:12 PM »
Beauty. Only thing I could think of improving is some texture on the 'back' (top of the chassis). Some bumps/spines or something like pic below. Shame that you're already right on the weight limit though.  Again, beautiful bot. Great work.
602
« on: June 09, 2018, 07:39:58 AM »
CW version of LeViathaN. 598ish kg.  Gfycat link: https://gfycat.com/BrokenSlimCrustaceanI changed the colourscheme to differentiate it from the MW version, added a full floor to the bot, changed all the front panels from alu to steel and modded a white version of the DSL bar and replaced the black ones, and replaced the ugly blue control board with a nice red version. A couple fun facts about the first version; I only bothered to open RA2 because I wanted to make something for FOTEPX's new BOTM. So thanks for doing that my dude. It's also the first IRL bot I've done where I make the core of the bot (drive and weapon system) first, then fit the extender chassis around that, rather than the other way around. I think this is a much better approach.
603
« on: June 09, 2018, 07:16:33 AM »
Did you just put 6 VDMAs in there
604
« on: June 09, 2018, 04:57:03 AM »
I agree with FOTEPX, it's a lovely little drumbot. I love everything around the weapon area. My only nitpicks on what you could improve (IMO) is the front armour panels would look better being black/white to fit with the colourscheme, and the stuff poking out of the top of the 'chassis' looks kind meh. What weight is it?
605
« on: June 09, 2018, 04:48:45 AM »
Thanks for the kind words, everyone One of the better uses of polycarbonate. How do you make the robots spin like that? That seems too smooth to be multiple screenshots.
Took me ages to BFE that sheet into place, since by that time the bot was taking 60 seconds to load into the botlab. The image is just a video of the bot on a green backdrop in the botlab, taken into a video editor and chroma key'd. The video file is then exported to gfycat, who convert it to a gif that I can embed. I use a combination of movepixel, autohotkey and a simple custom python file to make the bot rotate smoothly and consistently.I never got round to making a tutorial on it I don't think but it's pretty simple. Figuring out how to do the rotation in the botlab was the hardest bit.
606
« on: June 08, 2018, 10:49:05 PM »
I think someone should make the new battlebots arena
Cool idea, but the new arena is really similar to the old one right? And we already have a recreation of the old arena :) Personally I'd like to see the King of Bots arena. Looks like it would be a balanced arena; small enough to prevent HS from being OP (especially if the side hazards do plenty of damage), yet difficult (but not impossible) for pure flippers to score KOs.
608
« on: June 07, 2018, 01:52:08 PM »
I had a quick play with the new build, my feedback:
- Eruption's flipper feels really nice now. Great work on tweaking that! - Both spinners, however, do not. Their blades/drums are going orders of magnitude too slow. Is this a limitation of the unity engine? - Carbide's bar is rotating off-center and it looks really derpy - PLEASE make the Esc key open the pause menu, not close the game! - I like the addition of the drumbot - I think the inactivity timer is really well implemented, both mechanically and visually. Great work there.
Good to see some progress. I haven't messed around in the botlab at all, are the bots made there useable in battle yet?
609
« on: June 06, 2018, 11:23:45 AM »
I made a simple python script that doubles the power of every motor in the game, except spin motors. Burst motors are barely affected, as I think the 'burst' attribute effects their power more than the actual 'power' attribute. In my very brief testing, it seems that this mod can make a lot of weapon setups unstable and pull the axle out of its socket. The increased torque also makes HS more mauler-prone. While it does feel a bit more beefy than before, I think we would need an across-the-board weight reduction to further increase perceived kinetic transfer, as well as transferring all motor weight into the axle to reduce havoks and prevent the axle becoming unstable. I encourage people to try this out and give feedback, so we get some more opinions on what we should do going forward import os
counter = 0 reverse = False
drivemotors = {'carsteering1.txt','carsteering2.txt','carsteering3.txt','awcopal.txt','astroflight.txt','astroflight_locked.txt','slimbody.txt','slimbody_locked.txt','treadsmotor.txt','TWM.txt','twm3rdrive.txt','twm3r2drive.txt','TWM3lx.txt','TWN3Rlx.txt','NPC.txt','NPC-T64.txt','NPC-T64fast.txt','NPC-fast.txt','NPCT64rightfast.txt','NPCT64right.txt','NPCT64leftfast.txt','NPCT64left.txt','ztek1.txt','ztek2.txt','etekdrv.txt','etekdrvlx.txt','etekdrv_locked.txt'}
for i in os.listdir('.\Components\\'): if i[-4:].lower() == ".txt" and i not in drivemotors: file = open('.\\Components\\'+i,"r") data = file.readlines() count = -1 for line in data: count += 1 if line[:8].lower() == "power = ": print(i) print(line) counter += 1 power1 = int(float(line.split(" ")[2])) if len(line.split(" ")) > 3: power2 = int(float(line.split(" ")[3])) if reverse: editedLine = "power = " + str(int(power1/2)) + " " + str(int(power2/2)) + "\n" else: editedLine = "power = " + str(int(power1*2)) + " " + str(int(power2*2)) + "\n" data[count] = editedLine file.close file = open('.\\Components\\'+i,"w") file.writelines(data) file.close()
counter2 = 0
for i in os.listdir('.\Components\\styles\\'): if i[-4:].lower() == ".txt" and i not in drivemotors: file = open('.\\Components\\styles\\'+i,"r") data = file.readlines() count = -1 for line in data: count += 1 if line[:8].lower() == "power = ": print(i) print(line) counter2 += 1 power1 = int(float(line.split(" ")[2])) if len(line.split(" ")) > 3: power2 = int(float(line.split(" ")[3])) if reverse: editedLine = "power = " + str(int(power1/2)) + " " + str(int(power2/2)) + "\n" else: editedLine = "power = " + str(int(power1*2)) + " " + str(int(power2*2)) + "\n" data[count] = editedLine file.close file = open('.\\Components\\styles\\'+i,"w") file.writelines(data) file.close()
print(str(counter) + " files modified in the components folder\n" + str(counter2) + " files modified in the styles folder") print("Success! Press enter to close")
m = input()
Download: Install instructions: Place the above .py file into the root directory of your RA2 install (same location as Robot Arena 2.exe) and double click to install. Requires Python to be installed on your system. The install may take a short while to complete and progress may seem to pause on the duel etek for a while. Just give it a couple minutes to finish. It will display the number of components edited when it has finished. To uninstall, edit the file and change the line at the top reading 'reverse = False' to 'reverse = True'. This will reverse the effects of the mod This mod will also unintentionally double the power of skinned/custom drive motors. Please be aware of this.
610
« on: June 05, 2018, 09:45:38 PM »
I love all the DSL-S coming out of here.
611
« on: June 05, 2018, 09:43:52 AM »
all you really can do is increase the maxspeed of motors, because if you jack up the power then they become super powerful drive motors and people will just use them for drive instead
State mandated motor segregation. You could say 'separate but equal'. No using drive motors for weapons and vice versa This has the bonus effect of literally banning piglet drive.
612
« on: June 05, 2018, 02:47:12 AM »
I've talked about this before, mainly on the discord, and in general I think you're right. The issue with just beefing up the motors, however, is that you start running the risk of the physics engine just freaking out (especially for bursts). Another solution would be to make bots lighter, like how Ironforge does it, but again that runs the risk of making the engine freak out due to lack of sufficient weight on a powerful motor. That being said, Ironforge has half-weight bots with very powerful motors and it doesn't seem to have this issue in general, or not to an extent that it's an issue. Maybe you can fiddle around with putting all the motor's weight in the axle, which seems to make it more stable, but that kinda modding is out of my ability range right now.
I also think it's worth looking into making motors smaller (yet another thing that Ironforge got right). It's incredibly hard to get a powerful motor in a bot without it looking like ass or using a very space-lenient bottype like a FBS.
613
« on: June 01, 2018, 09:34:30 PM »
https://gametechmods.com/forums/site-news-and-feedback/how-to-use-insert-attachment/Also, basically all your bots are block chassis with big thin extrusions made of extenders, which doesn't look very IRL or aesthetic. Look into making everything look like one solid unit instead of bits stuck onto the main chassis. I think that's your biggest weakness here. Like the front 'jaws' of komodo don't fit in with the chassis at all, they just awkwardly poke out of the front. Same goes for the wheelguards.
614
« on: June 01, 2018, 06:45:28 PM »
since I won real talk next month's rules: IF-S ELBITE arena HW if I'm allowed: no sns no multibots
615
« on: June 01, 2018, 12:06:39 PM »
Are the wedges not trash from the hinges being so high up? I was under the impression that wedges were better when the burst/hinge was as low as possible. Why not put them underneath the extenders? And I thought having them at an angle made them pretty bad too but idk.
Other than that it looks solid, does that single sheet give it enough stability to be effective?
616
« on: June 01, 2018, 06:56:55 AM »
> putting ironforge in with replicas and not DSL-S 🤔
617
« on: May 31, 2018, 02:52:18 PM »
wtf is a faruq line lol
618
« on: May 31, 2018, 01:36:37 PM »
oof, that match was bullsh** all around. Wen's bot getting beached in R1 is essentially a win by pin, and the fact that his bot can 2shot mine is absurd. Such is IRL I guess. The last round of the set was great though.
619
« on: May 29, 2018, 08:20:03 PM »
It could also have been RA2 not liking that added latency of USB over SATA, or an intermittent connection that RA2 didn't like, or a bajillion different things really. I run all my RA2 installs off of an SSD hooked up to a SATA>USB adapter, so it's likely an issue with the specific hardware-software combination that shayne is using.
Glad to see that it's working now. Would be interesting to see if it could run off of a USB stick on OP's computer, which would tell us if the issue was with the external drive directly.
620
« on: May 28, 2018, 07:05:31 PM »
NeonCalypso's first IF bot accepted, and 8bean added to NC's first IF team.
Pages: 1 ... 24 25 26 27 28 29 30 [31] 32 33 34 35 36 37 38 ... 308
|