RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Ancient Cave

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 88
I don't know if anyone has asked this but is there a script for a randomly generated dungeon like Lufia's Ancient Cave? I want mine to be just like the one Lufia 2, go down to floor 100 etc.
Can anyone help? :)

***
Rep:
Level 88
...
That would be one gigantic script. I suppose you could get a script to generate a random cave with a wall autotile, and then add the details to that, but I have no idea how to implement that.
...

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Veteran2011 Favourite Staff Member2011 Most Mature Member2011 Best RPG Maker User (Scripting)2011 Best Use of Avatar and Signature Space2010 Most Mature Member2010 Favourite Staff Member
There actually was one in 2k3, but I don't think they maintained the feature. It was kind of hard to use. Anyway, good luck finding the script

***
Rep:
Level 88
Smarter than the average bear
Where do I find these things :D

Anyway, here it is, random dungeon generator, a bit hard to explain so heres a demo;

http://savefile.com/files/519735

Credits go to Wachunga

***
Rep:
Level 88
Thanks this is great for mazes, but I am looking more for open rooms and doors, (doors not necessary I suppose) not tunnels, but thanks a ton anyway, this will help me! ;)

*
Rep:
Level 102
2014 Biggest Narcissist Award2014 Biggest Forum Potato2014 Best Non-RM Creator2013 Best Game Creator (Non-RM)2013 Best IRC ChatterboxParticipant - GIAW 112012 Most Successful Troll2012 Funniest Member2012 Best Use Of Avatar and Signature space2012 Best IRC ChatterboxSecret Santa 2012 ParticipantProject of the Month winner for November 2009For being a noted contributor to the RMRK Wiki2010 Most Successful Troll2010 Biggest Forum Couch Potato2010 Best IRC Chatterbox
Thanks this is great for mazes, but I am looking more for open rooms and doors, (doors not necessary I suppose) not tunnels, but thanks a ton anyway, this will help me! ;)
Why not make multiple different ones and use variables?

EXAMPLE: say you wanted it to have a random dungeon out of 2 different ones you have created.

Go to variable operations. Choose random Number between 1 and 2 (depending on how many dungeons you want it to randomize from)
<>Variable [0001] = Random (1,2)

Okay now Conditional branches. On tab 1 go to variable>constant>1>==

<>Conditional Branch Variable [0001] == 1
 <>Teleport [001 YourDungeon1]
: :Else Handler

Then repeat what you just did except replace one with two in the conditional branch and change the teleport event to the other possible dungeon. Place this under else handler.