Show Posts

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.


Topics - Robot

Pages: [1]
1
Modification Help / Abandoned naruto thing
« on: January 14, 2020, 04:02:03 PM »
https://leopard.hosting.pecon.us/dl/eylki/Server_Naruto.zip

You can do hand-signs with the brick move keys to perform jutsus, the more powerful the jutsu the harder the seal. Only made Chidori before I stopped. Turn off self damage

https://streamable.com/qorho

2
Add-Ons / BRYLEXCORE HEAVY MACHINE GUN + TECHNICAL
« on: January 11, 2020, 06:57:03 PM »
.50 Machine Gun
Download



Features
- Heating, barrel will visibly glow red and shoot faster as it heats up, can jam at high heat, can cook-off
- Ammo, can be manually reloaded, belt will visually deplete as you run out of ammo
- Press E to stand up, useful to shoot downwards if needed
- Cool sounds (don't tell offworld industries)
- Fast projectiles
- stuff go boom

Might make a higher stand version for technicals

I don't like features
Type this in console
$Pref::RHMG_Heating = false; - Disable overheating
$Pref::RHMG_Ammo = false; - Disable ammo
$Pref::RHMG_Jamming = false; - Disable jamming
$Pref::RHMG_SitStand = false; - Disable sitting/standing
$Pref::RHMG_FastProjectile = false; - Disable fast projectiles

Known issue: There's some way to cause the reload animations to play on-top of each other like 50 times that I still can't replicate

3
Modification Help / WIP inefficient pathfinding algorithm
« on: September 11, 2019, 01:32:50 AM »
Sorry to disappoint if you were one of the people in BCC following along with this but I don't think I have the capacity to finish this project. Pathfinding algorithms are over my head and I just haven't had the time to do the research, and with the future of Blockland becoming more and more uncertain I haven't had much motivation to work on it either. That may change, but nonetheless it feels wrong to just sit on it indefinitely so here you go.

I did my best to write comments to kinda explain what's going on in here. You are free to use this code however you want.
https://cdn.discordapp.com/attachments/609001398087974943/621229227395645451/System_WRathfinder.zip

Basic usage:
- Type wrath_generateNodeMap(); in console. This will create nodes for your entire build. If your build is too big it might explode and crash your game.
- Type wrath_newPath("start coordinates", "end coordinates"); in console. The system will now increment through nodes to try and 'find' the goal node from the start node and will dump a bunch of information into your console during the process. The example wrathfinder_newPath("-54.75 -56.25 0.5", "73.75 91.25 13.3"); will look between one corner of Afghan DM to a roof of a building at the opposite corner.

This wont produce any useful information, the shortest path isn't actually cached, it just stops once it finds its way through the nodes. The framework is there though. I think what I'd try to do would be to add a heuristic to every node visited in the path based on what time/order it was visited, and then increment through the path again, but always going to the neighbor with the highest heuristic. That should give you the shortest path through the visited nodes but not necessarily the actually shortest path.

Also features a tool that can place and delete nodes, the intent was to try and make it so you could create your own, way more efficient node graphs manually. You can equip it with /nodeGun. It seems to do a pretty stuffty job of finding nodes when deleting/linking though so careful if you intend to use it with generated maps with thousands of nodes.

Pages: [1]