Search found 4 matches

by unseenhawk778
Thu May 03, 2018 1:18 pm
Forum: Completed Games
Topic: Yandere Simulator Fan Game
Replies: 0
Views: 2099

Yandere Simulator Fan Game

I finished my first game using Renpy! While it is a fan game I am very proud of it! Learned a lot and have a lot of fun :D HERE IS THE JIST OF IT! You (Ayano) must defeat Megami, the most powerful rival in Yandere Simulator! If you like Yandere Simulator or are just in a need of killed a few minutes...
by unseenhawk778
Wed May 02, 2018 3:01 pm
Forum: Ren'Py Questions and Announcements
Topic: global name for all music? (SOLVED)
Replies: 6
Views: 1096

Re: global name for all music?

Ocelot wrote: Tue May 01, 2018 5:11 am I think it is a correct course of action. It seems that one of standard RenPy files got corrupted somehow. In reality this line should be

Code: Select all

file = l.simple_expression()
Did you do some global find and replace earlier?
You bet I did
by unseenhawk778
Sun Apr 29, 2018 12:36 pm
Forum: Ren'Py Questions and Announcements
Topic: global name for all music? (SOLVED)
Replies: 6
Views: 1096

Re: global name for all music?

Have you tried: define audio.ayano = "music/aynao.wav" #or whatever filepath and format you have and then, in the script: play music ayano It should work. If you have definitions of music in separate file, just add init offset = -10 at the top of the file, so the engine registers those de...
by unseenhawk778
Sat Apr 28, 2018 6:16 pm
Forum: Ren'Py Questions and Announcements
Topic: global name for all music? (SOLVED)
Replies: 6
Views: 1096

global name for all music? (SOLVED)

Wanted to add music to the game I am making but I am no longer allowed to. This code does come up File "renpy/common/000statements.rpy", line 56, in parse_play_music file = Ayano() NameError: global name 'Ayano' is not defined It does this with any and all audio files I add to ANY of my ga...