Skip to content

Instantly share code, notes, and snippets.

View renpytom's full-sized avatar

Tom Rothamel renpytom

View GitHub Profile
label march19:
scene library
show eileen:
xzoom -1
xpos 200
ypos 80
easein 0.6 xpos 0
default tod = "morning"
image eileen happy = "eileen happy [tod]"
e = Character("Eileen")
label start:
show bg rooom
show eileen happy
from flask import Flask
from flask_ask import Ask, statement
import logging
import requests
application = app = Flask("__name__")
ask = Ask(app, '/house')
@app.route("/")
style jeff_hyperlink_text:
font "Weirdo.ttf"
init python:
def jeff_hyperlink_styler(target):
return style.jeff_hyperlink_text
define jeff = Character("Jeff", what_font="Weirdo.ttf", what_hyperlink_functions=(jeff_hyperlink_styler, hyperlink_function, hyperlink_sensitive))
090B85 12.2 normal ***************************|*******__*___*______*________________________ 37 C -2.0 -8.8 -57.0 Agrimerica Equipment - Toro TRX20
090BBA 12.4 normal ***************************|****************************************_**** 71 + 5.1 -3.4 -63.4 Agrimerica Equipment - Wacker LTV6
090BC1 12.6 normal ******_*__****___**_*******|*____******************_****_*******_**_*____ 53 C -2.0 -8.1 -66.2 Agrimerica Equipment - GMC 2500 HD
090BEF 13.0 normal ___**____**_**_____________*|_***_**_***___________*___*___*_____________ 18 C -2.0 -7.4 -66.6 Agrimerica Equipment - Wacker LTV6
090CDE 12.6 normal ***********************_***|*******************************_************* 70 + 5.9 -2.3 -66.0 Agrimerica Equipment - SkyJack SJ30 ARJE
090CFC 14.4 normal ***************************|***************************************____** 68 R 9.0 -1.7 -69.8 Agrimerica Equipment - SkyJack SJ843 TH
090D10 12.2 normal ***************************|****_*****************************_*******__* 68 + 4
screen red(target):
textbutton "Red: Read Mind":
action Jump(target)
screen blue(target):
textbutton "Blue: Read Mind":
action Call(target)
vbox:
yalign 0.5
style_prefix "sidemenu"
textbutton "SAVE" action ...
textbutton "LOAD" action ...
textbutton "SETTINGS" action ...
vpgrid:
cols 1
for i in entries:
fixed:
xysize (250, 50)
text "[i.name]" xpos 10 ypos 0
text "[i.info]" xpos 15 ypos 18
screen title(s):
text "[s]" size 40 xalign 0.5 yalign 0.5
show screen title("The first day.")
with dissolve
pause 1.5
hide screen title
with dissolve
init python:
class BleedBase(renpy.Displayable):
def __init__(self, gray, duration, reverse=False, old_widget=None, new_widget=None):
super(BleedBase, self).__init__()
self.gray = gray
self.duration = duration
self.reverse = reverse
self.new_widget = new_widget