Search found 236 matches

by drKlauz
Sat May 18, 2019 3:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Trying to Mod, Code looks weird
Replies: 5
Views: 367

Re: Trying to Mod, Code looks weird

Probably game uses custom dialog engine, maybe dlg files autogenerated from some sort of visual dialog editing tool or something like. Anyway good luck with modding.
by drKlauz
Sat May 18, 2019 5:54 am
Forum: Ren'Py Questions and Announcements
Topic: Trying to Mod, Code looks weird
Replies: 5
Views: 367

Re: Trying to Mod, Code looks weird

It is not valid RenPy/python code (tho python allows combining simple statements with ; ), are you looking at rpy/rpyc file or it is csv/txt?
by drKlauz
Sat Apr 20, 2019 11:17 am
Forum: I am a Programmer, Director, or Other
Topic: [BUSY] Programming
Replies: 13
Views: 3194

Re: [AVAILABLE] Programming, game design, consulting

Answered to email.
by drKlauz
Fri Apr 19, 2019 5:43 am
Forum: I am a Programmer, Director, or Other
Topic: [BUSY] Programming
Replies: 13
Views: 3194

Re: [AVAILABLE] Programming, game design, consulting

Available again, looking for new work.
by drKlauz
Mon Dec 24, 2018 4:36 am
Forum: I am a Programmer, Director, or Other
Topic: [BUSY] Programming
Replies: 13
Views: 3194

Re: [AVAILABLE] Programming, game design, consulting

Available again, looking for games to work on.
by drKlauz
Sun Oct 14, 2018 2:40 pm
Forum: I am a Programmer, Director, or Other
Topic: [BUSY] Programming
Replies: 13
Views: 3194

Re: [AVAILABLE] Programming, game design, consulting

Available again, updated start post.
by drKlauz
Thu Sep 27, 2018 1:59 am
Forum: Creator Discussion
Topic: Syntax Errors?
Replies: 7
Views: 1046

Re: Syntax Errors?

$a=b+c

It might be useful to check https://www.codecademy.com/learn/learn-python
And how to use Python in RenPy https://www.renpy.org/doc/html/python.html
by drKlauz
Tue Sep 25, 2018 2:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Global stats at end of game
Replies: 3
Views: 766

Re: Global stats at end of game

Copy from PM, in case anyone will have similar need it in future. You need some dictionary in which you store choices player have made. Such dictionary must be created at start label, so it can track current game. When player select option you update dictionary. Then periodically or at game end, you...
by drKlauz
Tue Sep 25, 2018 12:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Global stats at end of game
Replies: 3
Views: 766

Re: Global stats at end of game

You can either add $choices_done["choice_431_a"]=True to menu choice or rework choice screen so it updated automatically. Then periodically sync choices_done with your server stats.
by drKlauz
Tue Sep 25, 2018 12:24 pm
Forum: Creator Discussion
Topic: Syntax Errors?
Replies: 7
Views: 1046

Re: Syntax Errors?

Code: Select all

if FirstCard=="vAce":
"vAce" - string
vAce - variable name, which do not exist in your code
== - is equal
= - assignment

P.S.: This question probably belong to viewforum.php?f=8
by drKlauz
Mon Aug 13, 2018 4:34 am
Forum: I am a Programmer, Director, or Other
Topic: [BUSY] Programming
Replies: 13
Views: 3194

[BUSY] Programming

STATUS UPDATE (12 Jul 2021): currently busy Hi, i'm experienced programmer, looking for new projects to fill my schedule. Fluent Python - RenPy, web, native standalone apps. What i can do: - Dialog-based or point&click games - Custom GUI (standard game screens, weird layouts, unusual elements) - Min...
by drKlauz
Sat Nov 05, 2016 3:45 am
Forum: Ren'Py Questions and Announcements
Topic: Python Version
Replies: 2
Views: 362

Re: Python Version

RenPy 6.99.10 - Python 2.7.10, don't know about most recent version, but not Python3 for sure.
by drKlauz
Sun Oct 30, 2016 1:12 am
Forum: Ren'Py Questions and Announcements
Topic: Script file is suddenly empty?
Replies: 10
Views: 1323

Re: Script file is suddenly empty?

Google "unrpyc".
If you really can't find tool or use it, send me rpyc, in pm, i will try to decompile it for you.

P.S.: It's not really first time when someone got empty rpy file, probably bug in RenPy building chain or editor.
P.P.S.: What inside rpy~ file? Empty?
by drKlauz
Fri Oct 21, 2016 9:48 am
Forum: Ren'Py Questions and Announcements
Topic: Can't seem to remove an item from a list
Replies: 6
Views: 691

Re: Can't seem to remove an item from a list

I still don't know why exactly it didn't worked before for you, but, well, welcome :D Yes, using dictionary instead of list is implementation detail, so only code inside methods will be affected, usage will be same. But if you have inventory working, probably no need to invent something else. Your c...
by drKlauz
Thu Oct 20, 2016 11:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't seem to remove an item from a list
Replies: 6
Views: 691

Re: Can't seem to remove an item from a list

This code works for me. init python: class Clothes: def __init__(self, name, desc, tag, flashy=0, alternative=0, elegant=0, innocent=0, plain=0): self.name = name self.desc = desc self.tag = tag self.flashy = flashy self.alternative = alternative self.elegant = elegant self.innocent = innocent self....