Unable to run RenPy games.

Status
Not open for further replies.
U

User_1042047

Guest
Guest
Hello. I can't run any games. It started with Melody. I tried to fix that by downloading RenPy SDK but it didn't help. Here is log for RenPy for example.
 
U

User_1042047

Guest
Guest
I'm getting these errors even when my antivirus is disabled. I'm using only Windows Defender.
 

Winterfire

Forum Fanatic
Respected User
Game Developer
Sep 27, 2018
4,895
7,195
Another user in here had the same problem as you, I am not sure how he resolved (I will go check if I can dig that thread up), in the meantime, try this solution:
Open the proprieties of the executable file, go on compatibilities and then select "Windows Vista", by googling the error that came up in your log, I have found the solution in here (second page):

-edit-
Nevermind, I remembered wrong, the thread was about something else... The solution above should work though.
 

jaytee01

Member
Sep 29, 2017
256
108
I would like to know if there is a plus to editing these lines in "script.rpa" This is from the game The power of Confidence. Any help or guidance for a python dummy will be appreciated...

label use_item_charisma:
call use_item_bg from _call_use_item_bg
$ usable_items.remove_item(item_charisma)
$ bonus[CHARISMA]+=6
"You spray some cologne on yourself."
"You feel more confident."
if usable_items.has_item(item_charisma)==False:
"You've used up the last of the bottle."
jump next_time


label use_item_money:
call use_item_bg from _call_use_item_bg_1
show half-tone
$ usable_items.remove_item(item_money)
$ bonus[MONEY]+=6
$ money_current+=stats[MONEY]+2
"You use a gift card."
if usable_items.has_item(item_money)==False:
"It is expended."
jump next_time

label use_item_stealth:
call use_item_bg from _call_use_item_bg_2
$ usable_items.remove_item(item_stealth)
$ bonus[STEALTH]+=6
"You slip some very quiet insoles into your shoes."
"Your footsteps are silent, but the insoles themselves don't seem too sturdy."
if usable_items.has_item(item_stealth)==False:
"You use the last that you have."
jump next_time

label use_item_intelligence:
call use_item_bg from _call_use_item_bg_3
$ usable_items.remove_item(item_intelligence)
$ bonus[INTELLIGENCE]+=6
"You take some pills. You feel a little uncomfortable."
"The discomfort doesn't last long and suddenly you remember things you never knew in the first place."
if usable_items.has_item(item_intelligence)==False:
"You've taken the last of the pills."
jump next_time

label use_item_fitness:
call use_item_bg from _call_use_item_bg_4
$ usable_items.remove_item(item_fitness)
$ bonus[FITNESS]+=6
"You eat a bunch of protein powder."
"You're not really sure how, but you feel pumped up and jacked."
if usable_items.has_item(item_fitness)==False:
"You've used up the last of your supply."
jump next_time
 
U

User_1042047

Guest
Guest
That issue exists in older Windows 10 versions. I had 1607 at that time. On 1809 it worked. Not sure about 1703-1803.
 
Status
Not open for further replies.