Search found 11 matches

by dlt111
Tue Jan 01, 2013 3:21 am
Forum: Ren'Py Questions and Announcements
Topic: Game doesn't clear a status when starting a new playthrough
Replies: 1
Views: 346

Game doesn't clear a status when starting a new playthrough

So.... yet another odd problem. I have variables that aren't working like I thought they would. I implemented a health system that works... kinda. When I play I have an event that happens that lets me change the health randomly. When I save it, the game doesn't save the changed state when I turn the...
by dlt111
Mon Dec 31, 2012 3:34 am
Forum: Ren'Py Questions and Announcements
Topic: How to add a health system (not the normal kind)
Replies: 10
Views: 1093

Re: How to add a health system (not the normal kind)

(Now that my cats have stopped trying to eat my food and cords I can try this again.) That actually sounds a lot easier, Light, and a bit more along the lines of what I wanted. Probably helps that you already have my code, ne? Thanks a lot! I use this http://www.renpy.org/wiki/renpy/doc/cookbook/Inf...
by dlt111
Mon Dec 31, 2012 2:01 am
Forum: Ren'Py Questions and Announcements
Topic: How to add a health system (not the normal kind)
Replies: 10
Views: 1093

Re: How to add a health system (not the normal kind)

Yes, that'll do nicely. Thank you guys!
by dlt111
Mon Dec 31, 2012 1:40 am
Forum: Ren'Py Questions and Announcements
Topic: How to add a health system (not the normal kind)
Replies: 10
Views: 1093

Re: How to add a health system (not the normal kind)

Predestined events/chance events. label nursesoffice: if nothurt: "You're not hurt so you don't think it wise to see the nurse unless you absolutely need to." jump mainhall_left else: "You walk in and see the nurse is male and looks a bit..... odd.... and scary. " "Do you re...
by dlt111
Mon Dec 31, 2012 1:30 am
Forum: Ren'Py Questions and Announcements
Topic: How to add a health system (not the normal kind)
Replies: 10
Views: 1093

How to add a health system (not the normal kind)

I don't want to make a normal style health system of 1-100 HP. I want a system that doesn't use the DSE system and is based off of this set of health values, Critically Ill Really Sick Sick Somewhat sick Exhausted Tired Okay Good Very Good Never Been Better Is there a way to do this? I also need it ...
by dlt111
Sat Dec 29, 2012 1:52 am
Forum: Creator Discussion
Topic: Very Complex Multi-Path Story/Dating Sim {Help?}
Replies: 8
Views: 1342

Re: Very Complex Multi-Path Story/Dating Sim {Help?}

I'll keep that in mind as I make the game, but I mainly intend to keep these stats as hidden indicators throughout the game and their choices make the stats move. The original five options of charm, courage, etc. are the start of character creation and I'll reward the players for being adventurous w...
by dlt111
Sat Dec 29, 2012 1:43 am
Forum: Creator Discussion
Topic: Very Complex Multi-Path Story/Dating Sim {Help?}
Replies: 8
Views: 1342

Re: Very Complex Multi-Path Story/Dating Sim {Help?}

Thank you very much! Now I can move on with my story! *hugs* Thanks!
by dlt111
Sat Dec 29, 2012 1:38 am
Forum: Creator Discussion
Topic: Very Complex Multi-Path Story/Dating Sim {Help?}
Replies: 8
Views: 1342

Re: Very Complex Multi-Path Story/Dating Sim {Help?}

And if the person is named Hamuko I would use PERSON = protagonist() as Hamuko = protagonist() then Hamuko.courage -=1 correct?
by dlt111
Sat Dec 29, 2012 1:27 am
Forum: Creator Discussion
Topic: Very Complex Multi-Path Story/Dating Sim {Help?}
Replies: 8
Views: 1342

Re: Very Complex Multi-Path Story/Dating Sim {Help?}

That's very helpful and helps one of my major questions, but another is (and I don't think I quite elaborated on it well enough earlier) How do I set those flags as separate flags? Is there a way to color-code the menu flags? Like courage is orange and charm is pink and you need so many orange flags...
by dlt111
Sat Dec 29, 2012 1:10 am
Forum: Creator Discussion
Topic: Very Complex Multi-Path Story/Dating Sim {Help?}
Replies: 8
Views: 1342

Very Complex Multi-Path Story/Dating Sim {Help?}

Okay, the lowdown is this: I have a visual novel/story/dating sim/whatever you wanna call it that I'm working on in my spare time. I'm a bit stuck though. I don't wanna use the DSE because I feel it makes it too impersonal, but I wanna give special events to those people who work hard to build up a ...