Battle Towers - Open-PreAlpha - 0.1.1 - R1

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Battle Towers - Open-PreAlpha - 0.1.1 - R1

by rater193 » Post

Battle Towers

Upcoming update: NPC API
I started work last night, on the NPC framework api. I was going to base the code off the mod, NPC Frameworks but then i figured since im making an entire API, why dont i just make my own, since it was already pretty easy to do it. So, i started work on a custom system, winch will also give NPCs pathfinding so they can get to you without you realizing it! There will be 3 types of mobs.
1: ground
This will include things like zombies, caravans, and a ton of other things

2: flying
This will include things like giant flying eyes, bats, harpies, etc...

3: swimming
Swimming will not only be bound to water, i can also make it so there can be a "desert sand worm" winch is a giant worm that swims in the sand in the desert! so, be careful when you go there >: D

If you want to join teamspeak, feel free to join here:
Teamspeak IP: error22.com

Current version: PreAlpha-0.0.1-R1

Description
This mod is a WIP. The purpose of this mod is to spawn towers in the world, that have loot chests inside them, as well as hostile creatures. The system will be an API, so you can create your own tower types as well. The mod is designed after a popular minecraft mod, battletowers, hince the mod's name, battletowers.
This mod will be a fun mod to play with, with your freinds, however by yourself, it may be a little challenging to take over a tower. Future updates will include things like custom mob spawners, custom mobs, configurable mob spawners, configurable loot chests, and much more. enjoy the mod and have fun!

Download:
Download here(ADFLY) if you want to help raise money to put on a server!
I need 8$/month to start off!

Direct downloads:(Specific versions)
RatersMods-BattleTowers-0.1.1-R1.zip
(99.35 KiB) Downloaded 245 times

demo screenshot:

Image


Planned features:

Tower spawning
Loot chests spawning in towers
Loot chests
more loot
Loot chests scale with the more loot gained on that floor
loot API
Progressive loot gain(The next floor gives more loot than the last)

[Next update] Spawners spawning in towers
[Next update] NPC Creation
[Being worked on] Mob drops
[Being worked on] Boss spawns
[Being worked on] More world mob spawns
[Being worked on] Random merchant that wanders around the world

Ability to sell loot to the merchant
Ability to buy resources from the merchant.



PreAlpha - 0.1.1-R1
8/25/2015
Updates:
This update was oriented twords the loot chests for the towers. The loot system now comes with a fully stocked API for letting you add new loot that spawns in towers!
Loot chests spawning in towers
Loot chests
more loot
Loot chests scale with the more loot gained on that floor
loot API
Progressive loot gain(The next floor gives more loot than the last)


loot API:
To start using the loot api, first you must run dofile like so

Code: Select all

	dofile(minetest.get_modpath("battletowers").."/Settings_Loot.lua")
Arguments:

Code: Select all

	addLoot(item, weight, minamm, maxamm)
After, you can start registering new loot to spawn in the chests
ex:

Code: Select all

	_G.battletowers:addLoot({name="default:dirt"}, 20, 2, 5)
	_G.battletowers:addLoot({name="default:stone"}, 10, 2, 5)
Here is a sample, that is used in the current loot creator, for the chests

Code: Select all

dofile(minetest.get_modpath("battletowers").."/Settings_Loot.lua")


_G.battletowers:addLoot({name="default:dirt"}, 20, 2, 5)
_G.battletowers:addLoot({name="default:stone"}, 10, 2, 5)
_G.battletowers:addLoot({name="default:iron_lump"}, 5, 2, 15)
_G.battletowers:addLoot({name="default:copper_lump"}, 5, 2, 15)
_G.battletowers:addLoot({name="default:gold_lump"}, 4, 2, 5)
_G.battletowers:addLoot({name="default:coal_lump"}, 10, 2, 15)
_G.battletowers:addLoot({name="default:diamond"}, 1, 1, 3)

If there are any features you would like to see in the game, let me know!



8/24/2015
Got back on today and started adding in chests and spawners to the battle towers, they dont work yet, but its a WIP, i will fix it in the future! at least for now, you can have pre-made buildings to live in!

Updates:
Released pre-alpha-0.0.1-R1
Towers spawning in world
Code getting ready to add spawners
Code getting ready to add loot chests
Code getting ready to add boss mobs






8/23/2015
Hello everyone! i am developing a new mod for minetest, that will bring the minecraft mod, battletowers, to minetest! I just started working on this today, and already got the towers randomly generating in the world! right now mobs do not spawn in them, however I will add spawners and and loot chests into them in the future, so it will be more fun to raid! I will post the progress of battle towers here! I plan to release it within the next few days in open alpha!
Last edited by rater193 on Sat May 07, 2016 03:20, edited 35 times in total.
Current mods:
Battle Towers

User avatar
swordpaint12
Member
Posts: 191
Joined: Sat Aug 22, 2015 00:50
In-game: [swordpaint12][Belching_Balladeer]
Location: Foobass, isle of Atlantis, castle of Bardvendelle

Re: Battle Towers

by swordpaint12 » Post

Impressive mod! I look forward to seeing the final product and, ultimately, download it!
God's not dead; remember that!
Yay for MT! No MC here!
I am a human. I'm younger than 100 years old.
I've been playing Minetest since December 2014.

I'm amazed that I haven't been on here in so long! My latest minetest accomplishment was mining by hand (well, as close as you can get in a computer game) a circle 30 blocks in diameter. It took forever but it's pretty cool.

User avatar
Don
Member
Posts: 1643
Joined: Sat May 17, 2014 18:40
GitHub: DonBatman
IRC: Batman
In-game: Batman

Re: Battle Towers

by Don » Post

+1
Many of my mods are now a part of Minetest-mods. A place where you know they are maintained!

A list of my mods can be found here

Minetestforfun
Member
Posts: 940
Joined: Tue Aug 05, 2014 14:09
GitHub: MinetestForFun
IRC: MinetestForFun
In-game: MinetestForFun
Location: On earth
Contact:

Re: Battle Towers

by Minetestforfun » Post

wow great ! maybe a new server concept for the MinetestForFun dev tem ! :p

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers

by rater193 » Post

I updated the mod, and now released the download to the pre-alpha version, if anyone wants it!
Current mods:
Battle Towers

User avatar
Ben
Member
Posts: 160
Joined: Tue Mar 31, 2015 20:09

Re: Battle Towers - Open-PreAlpha

by Ben » Post

Wow, looks impressive! Good work :-D

User avatar
benrob0329
Member
Posts: 1341
Joined: Thu Aug 06, 2015 22:39
GitHub: Benrob0329
IRC: benrob0329
In-game: benrob03
Location: Michigan
Contact:

Re: Battle Towers - Open-PreAlpha

by benrob0329 » Post

Could you zip or tar.gz it please? RAR is a propriety format..

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers - Open-PreAlpha

by rater193 » Post

benrob0329 wrote:Could you zip or tar.gz it please? RAR is a propriety format..
There, i changed it to a ZIP, from RAR
Current mods:
Battle Towers

Sokomine
Member
Posts: 4317
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

Re: Battle Towers - Open-PreAlpha

by Sokomine » Post

rater193 wrote: Random merchant that wanders around the world
Ability to sell loot to the merchant
Ability to buy resources from the merchant.
My mobf_trader mod might be of use to you for that purpose. Its traders do not walk around, but you can add their trading function to mobs from other mods. The traders where inspired by npcf as well.
A list of my mods can be found here.

User avatar
Napiophelios
Member
Posts: 1035
Joined: Mon Jul 07, 2014 01:14
GitHub: Napiophelios
IRC: Nappi
In-game: Nappi

Re: Battle Towers - Open-PreAlpha

by Napiophelios » Post

this is a neat concept to add to a game but I just wish it used default nodes
instead of adding nodes that are very similar to ones we already have,
the chiseled cobblestone looks very much like stone bricks
they are very nice textures though :)

maybe you can add depends.txt to the mods, so we know
they are dependant on the other mods in the pack,
and a license to protect your efforts.

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers - Open-PreAlpha

by rater193 » Post

the reason i am using custom nodes, is so i can make the tower blocks indestructible, the newer version has unbreakable blocks. the chisel mod, that i made was going to be its own mod, then i found out after i started it, it was already made for minetest, so i started making this mod, lol.
Current mods:
Battle Towers

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by rater193 » Post

New update released:
Now towers will generate with loot chests, each floor of the tower will "generate" more loot than the previous floor
There is also now an api for you to add in custom items to generate with the loot chests
Right now, the loot chest is a gold block, untill i change it in the future to be an actual chest, but for now, its a gold block.
Current mods:
Battle Towers

User avatar
benrob0329
Member
Posts: 1341
Joined: Thu Aug 06, 2015 22:39
GitHub: Benrob0329
IRC: benrob0329
In-game: benrob03
Location: Michigan
Contact:

Re: Battle Towers - Open-PreAlpha

by benrob0329 » Post

rater193 wrote:
benrob0329 wrote:Could you zip or tar.gz it please? RAR is a propriety format..
There, i changed it to a ZIP, from RAR
That didn't come out right, I sounded really rood here...sorry.

What I meant to say was that RAR isn't a file type supported by Windows or most Linux Distros by default, and it's not as easy to open (unless you use 7zip or WinRAR...) since it's closed source.

User avatar
Napiophelios
Member
Posts: 1035
Joined: Mon Jul 07, 2014 01:14
GitHub: Napiophelios
IRC: Nappi
In-game: Nappi

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by Napiophelios » Post

without torches mod and creatures mod you get many errors.
depends.txt are very helpful to us noobish types

However I wrote some quick aliases and finally got to test out the first release.

Its very nice compliment to Blockman's Ruins mod.
Nice job.

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by rater193 » Post

you dont get errors, you will just get a warning in the log, winch i used the torches mod temporarily, and will not be used in the future! thanks for reporting it as a problem anyways, it will be addressed next update!
Current mods:
Battle Towers

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by rater193 » Post

sorry for not working on the mod today, i was busy all day, i will be busy all day tomorrow as well, but after that i SHOULD have some free time, but idk
Current mods:
Battle Towers

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

NPC API Update Under Way!

by rater193 » Post

Upcoming update: NPC API
I started work last night, on the NPC framework api. I was going to base the code off the mod, NPC Frameworks but then i figured since im making an entire API, why dont i just make my own, since it was already pretty easy to do it. So, i started work on a custom system, winch will also give NPCs pathfinding so they can get to you without you realizing it! There will be 3 types of mobs.
1: ground
This will include things like zombies, caravans, and a ton of other things

2: flying
This will include things like giant flying eyes, bats, harpies, etc...

3: swimming
Swimming will not only be bound to water, i can also make it so there can be a "desert sand worm" winch is a giant worm that swims in the sand in the desert! so, be careful when you go there >: D
Current mods:
Battle Towers

User avatar
ArguablySane
Member
Posts: 116
Joined: Sun Oct 12, 2014 21:29

Re: NPC API Update Under Way!

by ArguablySane » Post

rater193 wrote:Swimming will not only be bound to water, i can also make it so there can be a "desert sand worm" winch is a giant worm that swims in the sand in the desert! so, be careful when you go there >: D
It sounds like someone needs to make a mod with remote controlled cars which you can affix dynamite to.
The above post and any ideas expressed therein are released to the public domain under a Creative Commons CC0 license.

User avatar
FreeLikeGNU
Member
Posts: 311
Joined: Tue Oct 28, 2014 02:50
GitHub: FreeLikeGNU
IRC: freelikegnu
In-game: FreeLikeGNU

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by FreeLikeGNU » Post

Looks cool! What is the license?

User avatar
benrob0329
Member
Posts: 1341
Joined: Thu Aug 06, 2015 22:39
GitHub: Benrob0329
IRC: benrob0329
In-game: benrob03
Location: Michigan
Contact:

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by benrob0329 » Post

Will the new NPC framework be in this mod? Or in a dependency?

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by rater193 » Post

benrob0329 wrote:Will the new NPC framework be in this mod? Or in a dependency?
It will come with this mod, but it will be a dependency as well, so i can use it with future mods
Current mods:
Battle Towers

User avatar
rater193
Member
Posts: 11
Joined: Fri Jan 16, 2015 09:36
GitHub: rater193
IRC: rater193
In-game: rater193

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by rater193 » Post

benrob0329 wrote:Will the new NPC framework be in this mod? Or in a dependency?
here, Github
Current mods:
Battle Towers

User avatar
swordpaint12
Member
Posts: 191
Joined: Sat Aug 22, 2015 00:50
In-game: [swordpaint12][Belching_Balladeer]
Location: Foobass, isle of Atlantis, castle of Bardvendelle

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by swordpaint12 » Post

Is this mod still being worked on? It certainly is a good idea.
God's not dead; remember that!
Yay for MT! No MC here!
I am a human. I'm younger than 100 years old.
I've been playing Minetest since December 2014.

I'm amazed that I haven't been on here in so long! My latest minetest accomplishment was mining by hand (well, as close as you can get in a computer game) a circle 30 blocks in diameter. It took forever but it's pretty cool.

User avatar
azekill_DIABLO
Member
Posts: 7507
Joined: Wed Oct 29, 2014 20:05
GitHub: azekillDIABLO
In-game: azekill_DIABLO
Location: OMICRON
Contact:

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by azekill_DIABLO » Post

+1

you know, if your sandworm is good i will use it in voxellar
Gone, but not dead. Contact me on discord: azekill_DIABLO#6565
DMs are always open if you want to get in touch!

User avatar
xeranas
Member
Posts: 162
Joined: Fri Feb 05, 2016 11:06

Re: Battle Towers - Open-PreAlpha - 0.1.1 - R1

by xeranas » Post

From screenshot for me it looks unnatural a bit (perfect shape, same color from down to top). Maybe mixing some (same attributes but different texture blocks) when generating these towers would help (for e.g. mossy stone block)? IMO generating old / damaged towers would be also great addition.

Post Reply