College Kings - The Complete Season
이 커뮤니티 허브는 '성인 전용'으로 분류되어 있습니다. 환경 설정에 이러한 콘텐츠를 표시하도록 설정되어 있어 이 허브가 표시되었습니다.

College Kings - The Complete Season

통계 보기:
Bug Injector 2022년 1월 4일 오전 8시 23분
[Spolier] Unlock all Scene Galleries
For lazy nerds who doesn't want 2nd playthrough

1. Go to your Steam folder eg
D:\Steam\steamapps\common\College Kings\renpy\common
2. Look for & Open 00action_other.rpy with notepad
3. Search for "class Replay(Action, DictEquality):" (line 400)
4. There is a line of text at line 418
5. Chang to "self.locked = locked" to be "self.locked = False"
6. Enjoy

:Mask3:
Finally I found some meaning for studying Python :TheyWhoControlTheSpice:
Bug Injector 님이 마지막으로 수정; 2022년 1월 4일 오전 8시 24분
첫 게시자: Oscar Six:
While the above method will work, we advise against modifying renpy files.

For a safer and more convenient method to force gallery scenes to unlock:
Inside `College-Kings/game/main_menu/scene_gallery/scene_gallery.rpy`
Add `locked=False` to the `Replay()` action.

Before:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope)) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

After:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope), locked=False) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

Please note you will have to update this each release as we don't distribute the game with gallery unlocked.
< >
24개 댓글 중 1-15개 표시
tasak 2022년 1월 4일 오후 12시 08분 
nice gg tutorial
Janybanny 2022년 1월 4일 오후 4시 51분 
Actually, this is not recommended since it is messing with core game engine files.
I suggest to change this line in the "College Kings/game/sceneGallery/sceneGallery.rpy" file:
action Replay(sceneGalleryItem.label, scope=updateScope(sceneGalleryItem.scope))
to this:
action Replay(sceneGalleryItem.label, scope=updateScope(sceneGalleryItem.scope), locked=False)
This adds it to the game file and not the engine file.
Bug Injector 2022년 1월 4일 오후 5시 32분 
Janybanny님이 먼저 게시:
Actually, this is not recommended since it is messing with core game engine files.
I suggest to change this line in the "College Kings/game/sceneGallery/sceneGallery.rpy" file:
action Replay(sceneGalleryItem.label, scope=updateScope(sceneGalleryItem.scope))
to this:
action Replay(sceneGalleryItem.label, scope=updateScope(sceneGalleryItem.scope), locked=False)
This adds it to the game file and not the engine file.

Yep, that actually sounds better, thanks man
Routypenguin 2022년 3월 16일 오후 9시 38분 
I must be doing something wrong here. I did the change Jany put on there and I'm getting an error everytime.
mayor whiskers 2022년 3월 21일 오전 12시 08분 
not working anymore
Deftallica 2022년 3월 30일 오후 5시 03분 
This doesn't appear to work any longer. Seems the file that JanyBanny is referring to has been removed or renamed. I don't see a "scenegallery" folder any longer. There is one in the "main_menu" subfolder but I supposed the coding has changed

Bug Injector님이 먼저 게시:
Janybanny님이 먼저 게시:
Actually, this is not recommended since it is messing with core game engine files.
I suggest to change this line in the "College Kings/game/sceneGallery/sceneGallery.rpy" file:
action Replay(sceneGalleryItem.label, scope=updateScope(sceneGalleryItem.scope))
to this:
action Replay(sceneGalleryItem.label, scope=updateScope(sceneGalleryItem.scope), locked=False)
This adds it to the game file and not the engine file.

Yep, that actually sounds better, thanks man
Deftallica 님이 마지막으로 수정; 2022년 3월 30일 오후 5시 16분
Bug Injector 2022년 4월 12일 오전 6시 51분 
The file has been moved to
D:\Steam\steamapps\common\College Kings\game\main_menu\scene_gallery
Then search for
action Replay(gallery_item.label, scope=update_scope(gallery_item.scope)
replace the whole line with
action Replay(gallery_item.label, scope=update_scope(gallery_item.scope), locked=False)
이 앱의 개발자가 이 게시물을 해당 주제의 답변으로 채택하였습니다.
Oscar Six  [개발자] 2022년 4월 12일 오전 6시 58분 
While the above method will work, we advise against modifying renpy files.

For a safer and more convenient method to force gallery scenes to unlock:
Inside `College-Kings/game/main_menu/scene_gallery/scene_gallery.rpy`
Add `locked=False` to the `Replay()` action.

Before:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope)) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

After:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope), locked=False) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

Please note you will have to update this each release as we don't distribute the game with gallery unlocked.
Oscar Six 님이 마지막으로 수정; 2022년 4월 12일 오전 6시 59분
mayor whiskers 2022년 4월 13일 오전 8시 15분 
are we not getting banned for this? I'm skeptical for changing anything
Oskin 2022년 4월 13일 오후 12시 01분 
bing chilling님이 먼저 게시:
are we not getting banned for this? I'm skeptical for changing anything
no
Luzifer 2022년 4월 14일 오전 7시 25분 
it worked
Deftallica 2022년 4월 16일 오후 5시 01분 
I appreciate the directions, but I can't seem to get this to work. Would it be possible to add an unlock button, like the one in College Kings 2?
YesSad 2022년 6월 12일 오후 7시 06분 
Oscar Six님이 먼저 게시:
While the above method will work, we advise against modifying renpy files.

For a safer and more convenient method to force gallery scenes to unlock:
Inside `College-Kings/game/main_menu/scene_gallery/scene_gallery.rpy`
Add `locked=False` to the `Replay()` action.

Before:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope)) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

After:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope), locked=False) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

Please note you will have to update this each release as we don't distribute the game with gallery unlocked.

Would it not be possible like people above have mentioned to add an "unlock all" if not can you tell me which program I can use that would allow me to change the file? I tried but everything I used won't let me edit.
Oskin 2022년 6월 12일 오후 8시 42분 
keeganm1e님이 먼저 게시:
Oscar Six님이 먼저 게시:
While the above method will work, we advise against modifying renpy files.

For a safer and more convenient method to force gallery scenes to unlock:
Inside `College-Kings/game/main_menu/scene_gallery/scene_gallery.rpy`
Add `locked=False` to the `Replay()` action.

Before:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope)) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

After:
for gallery_item in scene_gallery_items: frame: xysize (374, 300) button: background Transform(gallery_item.image, size=(362, 230), pos=(6, 16)) insensitive_background Transform(gallery_item.image, blur=50, size=(362, 230), pos=(6, 16)) idle_foreground image_path + "button_idle.webp" hover_foreground image_path + "button_hover.webp" insensitive_foreground image_path + "button_idle.webp" action Replay(gallery_item.label, scope=update_scope(gallery_item.scope), locked=False) frame: xysize (250, 49) xalign 0.5 ypos 224 text gallery_item.title.upper() align (0.5, 0.5)

Please note you will have to update this each release as we don't distribute the game with gallery unlocked.

Would it not be possible like people above have mentioned to add an "unlock all" if not can you tell me which program I can use that would allow me to change the file? I tried but everything I used won't let me edit.
we don't really want people playing around with the files so this will be best bet, and open you can use Vs-code
JN 801 2022년 7월 2일 오전 2시 31분 
Can this method be used for part 2 games?:pandashocked:
< >
24개 댓글 중 1-15개 표시
페이지당 표시 개수: 1530 50