Actually very easy to use once you know how it works, integrated it into my project within 30 minutes. Probably helpful that all the stuff I need to save is already located within a couple of nested structs, saving and loading the entire thing works like a charm. Great asset.
One question I do have is, in theory, will this work on console platforms?
beenbaba
Creator of
Recent community posts
Hello,
With the current logic in a battle with 2v2, if you select to attack 1 monster with both of your monsters and if the first attack kills the selected monster, the attack from the next monster will 'miss' and say 'there is no target'.
Is there a simple way to update this logic so that if another monster is still alive on the enemy side it attacks that monster instead of missing? Kind of like a 'check for other alive enemies first before missing' function.
Thanks
Yes for sure, I realised as well that there is not a release function in the box menu, at least, not one I can see??? So if that's the case and I implement one, I'll just need make sure that the party + box monsters is greater than 2 before you release a monster 😌. But anyway, big thanks for your help and the engine, has been a little tricky to get my head around some things but its progressing nicely
I actually went about this a different way in the end. I modified the obj_terminalmenu step event so that you can't cancel out of the menu if the party has less than two members and put a warning if so. I remove the 1 party member warning from the grab so that you can freely move monsters however the player wants. I can't think of a reason why this wouldn't work, can you?
I've also found a bug whereby the game will crash if you try to catch a monster that has already been captured in the same turn, because there is no longer a target. So two player party members, on both party members turn you use a monster ball item, if on the first party members turn the monster is caught, the second party members turn tries to use the monster ball but they can't be captured again, causing a crash. I fixed this by checking in the battle_control before using an item, if the item is a catching item type if the target is still 'alive', and if not, tell the player that it failed etc. If you can replicate might be worth fixing for everyone etc
Thank you. If I'm understanding correctly, this will also mean that the player can no longer 'swap' a monster in the party for one in the box if they have only 2 in the party meaning they will first have to get the monster they want from the box and add it as the 3rd party member, then put the one from the party into the box they don't want, correct?
Hello again,
I'm trying to make it so that when the cursor is over a move in battle, where the box that shows the type of the move and it's MP, I can add in a sprite to indicate the type. I'm looking in the attached image but I'm not sure what element to use to get it to draw the correct icon (I already have the move data setup with the type icons, I just need to know how to draw it)
Hello,
We have a controller object that has a create event that loops through our packed rooms and assembles a level from them. Every so often we experience a drop in FPS at the start of the room. We were wondering if any of the following apply:-
1) If the controllers create event has finished 'loading the rooms', can we assume that all rooms have now been fully loaded? i.e. tiles have appeared, objects have been created etc
2) If not, is there a way to tell when rooms have finished loading? Perhaps we can create a 'generating' loading screen that appears whilst everything is being loaded that is more dynamic than wait X amount of seconds.
Thanks
New question. Once I've selected a move and it brings up the menu for selecting a 'target to attack' from the menu, where can I grab the monster id of the proposed target (the one highlighted in the menu) as in, the monster the player is thinking of attacking before it's confirmed?
I'm implementing a battle cursor so that it highlights the enemy visually but I can only find the initial creation of the menu listing all the targets, not what the current proposed target is going to be based on this menu. If I'm going about it the wrong way feel free to correct me.
Awesome, thanks for the in detail response there, the support you're giving is top notch.
As an aside, do you have any plan to implement any new features to the framework at any point, or is what is offered now the final product from you? More curious than anything, what you've already provided is an amazing product for games like this to get off to a great start so I'm very happy with the purchase :)
Me again lol. Another few questions which may or may not already been included, if they have if you could point me to those move examples that would be great.
1) Is there a way for a move to increase the damage of certain move types e.g like weather effects - Rain - increase water and electric moves?
2) Is there the ability for multi-turn moves where you charge on one turn and attack on the next i.e Solar Beam
3) Is there the ability for moves such as Protect where all damage is negated?
4) Is there the ability to force a move to go first e.g Quick attack
5) Is there the ability to force a critical hit?
6) Is there a way to force an attack to never miss i.e Swift
Awesome thank you. Another couple of questions:
1) where is the flashing white cursor code located? I can't for the life of me find that.
2) Is there a 'delete file' feature already created or any other save file management implemented aside from saving and loading? (like overwrite or multiple saves from the same file etc)
Also, if there is a better means for me to ask questions/seek support then let me know :)
A new mon, like at the start of the game instead of the selector or a gift from an NPC for example, something like GetNewMon(monster) and it'd just go off and add it to the party if it can or a box if not, but I'll look into what you've said and go from there. And I'll look into the global vars, appreciate the response. Great framework tho, I've had to do some bits for it to work at a smaller res but that was simple enough once I'd read through the code a bit.
Another question, I'd like to give items in the inventory little icons. I was thinking that I could just add this info into the init_item and then add some code to draw the icon sprite within the inventory menu, any reason this wouldn't work?
Hi, this looks really good and I've played the demo for a bit and I just had a few questions for if certain functionality is included and if it isn't is there plans for it or would the engine be extensible enough to include it with some work my side.
- item to teach a move to a monster
- more than 4 moves per monster
- Abilities, special effects that each monster possesses (passive skills basically)
Thank you
Pretty solid experience, clear you put a lot of effort into it. The aesthetic works well and there isn't anything jarring, its overall very cohesive. One improvement for me would be to work on the characters run animation, right now it feels quite flat and I think you could bring a lot more personality to the character by working on it.