forked from Cavemanon/IWaniHugThatGator-Demo-Public
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
"use strict"
|
|
|
|
init -1 python:
|
|
# Modding Support variables
|
|
# All mod rpy files must run a small init python script
|
|
mod_dir = "mods/"
|
|
mod_menu_access = []
|
|
|
|
init python:
|
|
#import random
|
|
#import webbrowser
|
|
# multiple audio channels for ambience and such
|
|
renpy.music.register_channel("ambient1","sfx",True,tight=True)
|
|
renpy.music.register_channel("ambient2","sfx",True,tight=True)
|
|
renpy.music.register_channel("ambient3","sfx",True,tight=True)
|
|
renpy.music.register_channel("ambient4","sfx",True,tight=True)
|
|
|
|
if persistent.scroll == True:
|
|
config.keymap['dismiss'].append('mousedown_4')
|
|
elif persistent.scroll == None:
|
|
persistent.scroll = False
|
|
|
|
if persistent.lewd == None:
|
|
persistent.lewd = False
|
|
|
|
if persistent.autoup == None:
|
|
persistent.autoup = False
|
|
|
|
# Possibly for metro
|
|
#renpy.add_layer('bg_3d', below='master')
|
|
|
|
define config.gl2 = True
|
|
|
|
|
|
|
|
|
|
#actually play the game
|
|
label start:
|
|
|
|
$ score_inco = 0
|
|
$ score_olivia = 0
|
|
$ persistent.drawn = 0
|
|
pause 1.0
|
|
call storyline from _call_storyline
|