Изображение
https://4.bp.blogspot.com/-F2podp....eat.jpg

Ссылка на архив с проектом
http://renpyfordummies.blogspot.com/2016/03/blog-post_18.html

Код
init python:

    money = 100
    # обводка
    style.default.outlines = [(2, "# 0008", 0, 0), (1, "# 0008", 0, 0)]

    # action(действие) для ввода и проверки читов
    def call_input ():
        code = input ("Enter the code:")
        if code == "1234":
            global money
            money + = 100
            message ("You conjured 100 money.")
        elif code is None:
            message ("You pressed cancel.")
        else:
            message ("Password is incorrect.")
    CallInput = renpy.curry (call_input)

#этот экран ждет нажатия кнопки табуляции
screen cheat:
    key "K_TAB" action CallInput ()
    # индикатор денюжек
    frame align (.95, .05) background "# 0008":
        text "$ [money]" color "# dd4" size 48

# Игра начинается здесь.
label start:
    scene bg
    show neko with dissolve
    # показать экран, который отлавливает кнопку чит-кода
    show screen cheat
    "Press TAB to enter the cheat code. And enter" 1234 "."
    "Game over."
    return


Автор на Lemma Soft: Andredron
Тема на Lemma Soft: тут
Перевёл: progxaker