use this. u can open consoleEither use the solution Bibifoc posted or use unren for all. https://f95zone.to/threads/unrengui-unren-forall-v9-4-unren-powershell-forall-v9-4-unren-old.92717/
do you know console command which i can use in game ?use this. u can open console
shift + odo you know console command which i can use in game ?
Not sure why you quote me. First of all I'm not the one with the problem, and secondly. The post you quoted is more than 6 months old. I'm pretty sure who ever posted the original problem has found a solution by now.use this. u can open console
That's not a console command. It will just open the console if console commands is allowed in the config.shift + o
Same console commands as in any other Renpy game. The console basically only give you access to change parameter values and jump to different part of the script if the dev. has included jump labels in his script(s). The name of the parameters and jump labels, you need to find in the script(s), which you often need to unpack using unren or similar, before you can read them.do you know console command which i can use in game ?
def_list_explore_NPC() # List the NPC's you have met
def_list_explore_NPC()[0].name # The name of the first NPC of the list
def_list_explore_NPC()[1].name # The name of the second one. Useful to know which one you want to modify
def_list_explore_NPC()[0].name = 'New_name' # Change the name of the first NPC
def_list_explore_NPC()[0].dict_skill['Love']=10.0 # Set "Love" to the desired value
def_list_explore_NPC()[0].dict_skill={'Love': 10.0, 'Submission': 10.0, 'Joy': 10.0, 'Exploration': 5.0, 'Depravity/Modesty': 10.0, 'Friend/Anger': 10.0} # Set all with only one command
var_dict['GG_features']['Hygiene']=9999 # Set player "Hygiene" to desired value