??MONSTER ENCOUNTER AREAS??
Posts
Pages:
1
(RPG Maker XP)
Yeah, this is my fourth post in less than two days. But at least I'm learning something. And I hope the answers that I get to my questions help other people too.
So here's my next question. In the previous versions, like RPG Maker 2000, you could set Areas within a Map, so that only in certain parts of your game would you encounter enemies. You could also set encounter rates and all that jazz within these designated zones. Apparently RPG Maker XP doesn't have that function. I don't know if there is a better way to do this, but I've read a few posts and obviously the only way to simulate this option is to set something called Border Events. The idea is to create an Event that has variables that give you a chance to encounter a monster. Then you copy and paste the events as a border around say a forest, or desert, or smaller area. I have NO IDEA how to even begin to do this, mostly because I still don't know how to even begin with variables. I understand what the definition of a variable is, and I have had many people try and tell me that. That doesn't help me in the least. Yes I've had Algebra and Geometry. But what I need to know is how variables are a part of RPG Maker, and how I can best put them to use.
Yeah, this is my fourth post in less than two days. But at least I'm learning something. And I hope the answers that I get to my questions help other people too.
So here's my next question. In the previous versions, like RPG Maker 2000, you could set Areas within a Map, so that only in certain parts of your game would you encounter enemies. You could also set encounter rates and all that jazz within these designated zones. Apparently RPG Maker XP doesn't have that function. I don't know if there is a better way to do this, but I've read a few posts and obviously the only way to simulate this option is to set something called Border Events. The idea is to create an Event that has variables that give you a chance to encounter a monster. Then you copy and paste the events as a border around say a forest, or desert, or smaller area. I have NO IDEA how to even begin to do this, mostly because I still don't know how to even begin with variables. I understand what the definition of a variable is, and I have had many people try and tell me that. That doesn't help me in the least. Yes I've had Algebra and Geometry. But what I need to know is how variables are a part of RPG Maker, and how I can best put them to use.
Hmmm... I don't know if this would be possible in XP, but you could try using a parallel process event that checks if the player's x and y positions are somewhere between two points. For example.
If player's x position = 3 ~ 18,
->If player's y position - 5 ~ 19,
-->Enable encounters
-->Else
-->Disable encounters
->Else
->Disable encounters
By using these points, you can draw a square area. While inside this square, encounters will be turned on as the event constantly checks if you're inside it. You can draw multiple squares this way; if the x and y positions don't match, check if they match another square with certain points on the map.
I hope that's not too complicated.
If player's x position = 3 ~ 18,
->If player's y position - 5 ~ 19,
-->Enable encounters
-->Else
-->Disable encounters
->Else
->Disable encounters
By using these points, you can draw a square area. While inside this square, encounters will be turned on as the event constantly checks if you're inside it. You can draw multiple squares this way; if the x and y positions don't match, check if they match another square with certain points on the map.
I hope that's not too complicated.
Pages:
1














