is there a debug console?
is there a debug console?
I played a ton of it during alpha/beta and now I kinda wanna just easily get to routes I missed without worrying too much about anything.
- Spiky Caterpillar
- Posts: 419
- Joined: Thu Dec 04, 2008 3:34 am
- Contact:
Re: is there a debug console?
Yep, the standard Ren'Py debug console is in there, accessible through shift-O. (In spite of the fact that we're going to get five or six bug reports from people who think it was left in by mistake...)
Re: is there a debug console?
Does it use the same commands as the previous game?
Re: is there a debug console?
Sometimes yes, sometimes no, it depends on whether we've renamed things under the hood.
Right now we're a bit busy dealing with launch stuff to write up any useful hints so I'd say tinker-at-your-own-risk at the moment. If there are specific variables you want to mess with, though, ask about them and we can probably tell you how eventually.
Right now we're a bit busy dealing with launch stuff to write up any useful hints so I'd say tinker-at-your-own-risk at the moment. If there are specific variables you want to mess with, though, ask about them and we can probably tell you how eventually.
Re: is there a debug console?
I'm just mainly looking for the magic and money codes, I sat around trying to figure it out but oof.
Re: is there a debug console?
Money's simple enough.
Code: Select all
player.money = 1000
Re: is there a debug console?
I find using that method to try and up magic doesn't stick, the money does however which is good.
Re: is there a debug console?
There's multiple variables for magic so you probably only found the temporary ones, like I said we'll have time to organise more help for that later.
-
- Posts: 5
- Joined: Mon Nov 12, 2007 9:22 pm
- Location: North Carolina
Re: is there a debug console?
These methods do not seem to be working for me.
Re: is there a debug console?
On the same topic, I was thinking of writing a huge guide for ALL the routes and maybe all the achievements too. Is there any way I can easily see what effect choices have further along the line, or how many "points" certain things give you with characters? 

Re: is there a debug console?
In code probably not - you could track the 'points' for characters that have them because those have straightforward names, but with other things there are so many individual flags that might or might not get checked later, I don't think there's any convenient way to see EVERY variable.
On the other hand if you look at the event guide I've posted elsewhere that should provide a lot of information that would be useful towards writing bigger guides. It's not necssarily perfect (I wrote it by just scanning through my notes for what was supposed to happen, and I may have missed things) but there's a lot in there: https://www.hanakogames.com/md/event_guide.txt
On the other hand if you look at the event guide I've posted elsewhere that should provide a lot of information that would be useful towards writing bigger guides. It's not necssarily perfect (I wrote it by just scanning through my notes for what was supposed to happen, and I may have missed things) but there's a lot in there: https://www.hanakogames.com/md/event_guide.txt
Re: is there a debug console?
Thank you so much! This will really help!