Why not? do you get an error message? does your av interrupt to download?how to download , my laptop cant download file ???
Just click this link - Unren
What happens?
Why not? do you get an error message? does your av interrupt to download?how to download , my laptop cant download file ???
I don't know if you'd like to use the Github repo in future? I can give you collaborator. I could update the build script to work with *nix version as well.Damn, I guess I need to update the Mac/Linux version now!
Shift-dSo, stupid question... but how do I access the dev tool while in a game?
There are some tricks that developers use, many of which have been listed in this thread when people have tried unpacking them.How can I encrypt rpa without unren unpacking it
I would add that generally it also tend to annoy the players and make them less likely to play your game ; and so to potentially support it.It's really not worth the effort to try and prevent it IMO.
It happen when Python fail to find a description of it's environment ; the site module being this description. But it shouldn't happen with unren, only if you try to manually launch one of the embedded Python scripts.I'm getting "ImportError: No module named site" when I try to extract it, anyone knows whats up?
That actually makes a lot of sense. I had it on a folder with special character, once I changed it everything was working fine again lol.It happen when Python fail to find a description of it's environment ; the site module being this description. But it shouldn't happen with unren, only if you try to manually launch one of the embedded Python scripts.
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/scripts/core/User_Interface/Menu/Main.rpy", line 11: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
style_prefix "main_menu"
^
File "game/scripts/core/User_Interface/Menu/game_menu.rpy", line 3: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
style_prefix "game_menu"
^
File "game/scripts/core/User_Interface/Menu/prefs.rpy", line 5: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
use game_menu(_("Preferences"), scroll="viewport"):
^
File "game/scripts/core/User_Interface/Menu/save_load.rpy", line 5: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
use file_slots(_("Save"))
^
File "game/scripts/core/User_Interface/Menu/save_load.rpy", line 12: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
use file_slots(_("Load"))
^
File "game/scripts/core/User_Interface/UI_Elements/help_screen.rpy", line 3: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
frame:
^
File "game/scripts/core/User_Interface/UI_Elements/map_screen.rpy", line 3: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
frame:
^
Ren'Py Version: Ren'Py 7.3.0.271
Mon Sep 09 09:33:50 2019
the sl tag statement has to be on his own separate line. it's an error of the current unrpyc version to place it behind the screen statement.Code:I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/scripts/core/User_Interface/Menu/Main.rpy", line 11: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation. style_prefix "main_menu" ^ File "game/scripts/core/User_Interface/Menu/game_menu.rpy", line 3: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation. style_prefix "game_menu" ^ File "game/scripts/core/User_Interface/Menu/prefs.rpy", line 5: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation. use game_menu(_("Preferences"), scroll="viewport"): ^ File "game/scripts/core/User_Interface/Menu/save_load.rpy", line 5: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation. use file_slots(_("Save")) ^ File "game/scripts/core/User_Interface/Menu/save_load.rpy", line 12: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation. use file_slots(_("Load")) ^ File "game/scripts/core/User_Interface/UI_Elements/help_screen.rpy", line 3: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation. frame: ^ File "game/scripts/core/User_Interface/UI_Elements/map_screen.rpy", line 3: Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation. frame: ^ Ren'Py Version: Ren'Py 7.3.0.271 Mon Sep 09 09:33:50 2019
#wrong
screen help() tag menu:
.
.
.
#correct
screen help():
tag menu
.
.
.
screen main_menu():
## This ensures that any other menu screen is replaced.
tag menu
style_prefix "main_menu"
add gui.main_menu_background
## This empty frame darkens the main menu.
frame:
pass
## The use statement includes another screen inside this one. The actual
## contents of the main menu are in the navigation screen.
use navigation()
screen main_menu() tag menu:
style_prefix "main_menu"
add gui.main_menu_background
frame
use navigation()
It has been reported as a bug in the upstream repository:the sl tag statement has to be on his own separate line. it's an error of the current unrpyc version to place it behind the screen statement.
snippet from the orig. script:Python:#wrong screen help() tag menu: . . . #correct screen help(): tag menu . . .
result of the unrpyc'ed file:Python:screen main_menu(): ## This ensures that any other menu screen is replaced. tag menu style_prefix "main_menu" add gui.main_menu_background ## This empty frame darkens the main menu. frame: pass ## The use statement includes another screen inside this one. The actual ## contents of the main menu are in the navigation screen. use navigation()
Python:screen main_menu() tag menu: style_prefix "main_menu" add gui.main_menu_background frame use navigation()
Probably because it don't add a "cheat button". To access the console, you need to press the keysdont see cheat button i did everthing still dont see can some help out pleaseeee
shift
+o
together.This doesn't add a cheat button, it unlocks the console using 'Shift+O'.hi all
dont see cheat button i did everthing still dont see can some help out pleaseeee
By deleting both the "game/saves" folder in the game folder, and the folder located here :how delete all saves??