|
发表于 2024-9-5 01:38:59
|
显示全部楼层
找到游戏根目录下的 game 文件夹的 myScreens.rpy 文件 用txt记事本打开 找到以下代码段 全部删除 重启游戏 然后游戏内填表会报错 选择忽略即可. H' F2 l5 Y/ W9 ?; [1 ]5 r9 a$ F6 Y(欢迎访问老王论坛:laowang.vip)
6 ?+ ]+ U6 i% ~- n/ z(欢迎访问老王论坛:laowang.vip)
screen introduction_sheet():
& p+ B# @( t" q; [7 g* T add "images/dark_screen.png"6 B/ {5 ?7 J* m: S6 Q(欢迎访问老王论坛:laowang.vip)
add "images/menu/about_me.png"
1 ^$ N0 J* F- f+ p/ _' L P text "ABOUT ME" style "AM_title" xalign 0.5 ypos 89
4 G: F& R9 G- A( y" h- F text "Student Introduction Sheet" style "AM_subtitle" xalign 0.5 ypos 148! _, N4 d+ m4 t( h' p1 u$ ]* \(欢迎访问老王论坛:laowang.vip)
default question = "None"
7 Y+ l2 V3 B" h- D) V5 W
& `( L; N B& I" M/ K7 Y, n if question != "None": w& @$ f5 Y7 _: D* t(欢迎访问老王论坛:laowang.vip)
button:
5 s1 E$ L. R, S( { O( X xysize(1920,1080)
: q" J8 n6 j7 _6 l7 D$ c2 D# M9 \ action SetScreenVariable("question", "None")- G! @6 k0 g n6 l2 X- C) u(欢迎访问老王论坛:laowang.vip)
5 l0 t8 |* ^; t$ a% Z( C! e- [ if question == "food":9 U* _! F$ n6 _# ^4 m(欢迎访问老王论坛:laowang.vip)
vbox:
1 {' T' m: _8 k% w6 K$ e xpos 670 ypos 601
" g) e0 K1 t& h6 M. } text "{i}My favorite food is...{/i}" style "AM_text"/ `, U4 ^. x8 l3 u8 ?" j(欢迎访问老王论坛:laowang.vip)
grid 2 4:; ?* Z8 U/ E. C B; d(欢迎访问老王论坛:laowang.vip)
spacing 40 ypos 226 I0 ]) B4 c$ ]* g1 H(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}pizza{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "pizza"), Jump("intro_sheet")
! ~8 ^4 k1 v8 A. i5 F2 }8 Z textbutton "{font=[name_font]}mom's spaghetti{/font}" style "AM_player_buttonL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "mom's spaghetti"), Jump("intro_sheet")8 A/ {' g) E, }! Y5 ~5 ^(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}tacos{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "tacos"), Jump("intro_sheet"); l1 h1 Q6 A! g0 W4 z6 `(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}salad{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "salad"), Jump("intro_sheet")
. [) z U6 w* b+ L; ` textbutton "{font=[name_font]}chicken tendies{/font}" style "AM_player_buttonL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "chicken tendies"), Jump("intro_sheet")
' D; e @2 q2 W$ L2 ~ a textbutton "{font=[name_font]}steak{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "steak"), Jump("intro_sheet"). ]+ T; @0 |3 @ ~+ G$ w(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}noodles{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "noodles"), Jump("intro_sheet")9 z1 w; u3 q: y O( V/ c. Y' n& B(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}canburgers{/font}" style "AM_player_buttonM" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_food", "canburgers"), Jump("intro_sheet")
$ F. U% n; G2 h+ P0 \: t; Q7 r8 Y) _ Y9 G5 @$ O0 a3 A$ O) A2 R(欢迎访问老王论坛:laowang.vip)
if question == "years":
' r3 ?$ S. y8 X. a vbox:% V+ z* v- ] D5 P(欢迎访问老王论坛:laowang.vip)
xpos 670 ypos 601
- n8 w3 F* t6 w# R! C. ~. T+ { text "{i}In 5 years I see myself...{/i}" style "AM_text"
" f, Y7 t& m; K5 ^ grid 2 4:
$ w( D! K( Z4 o, x spacing 40 ypos 22$ Z3 h) N: w0 L0 t(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}as a photographer{/font}" style "AM_player_buttonXL" ypos fav_ypos action SetVariable("fav_years", "as a photographer"), SetScreenVariable("question", "None"), Jump("intro_sheet")) \7 G, E, G" i(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}doing my thing{/font}" style "AM_player_buttonL" ypos fav_ypos action SetVariable("fav_years", "doing my thing"), SetScreenVariable("question", "None"), Jump("intro_sheet")$ p$ q0 I! v8 S# `# }; o, e S* S(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}being rich{/font}" style "AM_player_buttonM" ypos fav_ypos action SetVariable("fav_years", "being rich"), SetScreenVariable("question", "None"), Jump("intro_sheet")
4 y& h# G: j, s8 w+ B1 W1 v: p textbutton "{font=[name_font]}deep in pussy{/font}" style "AM_player_buttonL" ypos fav_ypos action SetVariable("fav_years", "deep in pussy"), SetScreenVariable("question", "None"), Jump("intro_sheet") {' X( R1 U2 B(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}travelling the world{/font}" style "AM_player_buttonXL" ypos fav_ypos action SetVariable("fav_years", "travelling the world"), SetScreenVariable("question", "None"), Jump("intro_sheet") u0 L1 c- u# t; Q, A0 A- X(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}starting a family{/font}" style "AM_player_buttonL" ypos fav_ypos action SetVariable("fav_years", "starting a family"), SetScreenVariable("question", "None"), Jump("intro_sheet"): Y2 {9 _9 K# w' v e3 E' ]9 [(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}homeless, idk{/font}" style "AM_player_buttonM" ypos fav_ypos action SetVariable("fav_years", "homeless, idk"), SetScreenVariable("question", "None"), Jump("intro_sheet")
1 ^4 L' u& ~& } textbutton "{font=[name_font]}happy, hopefully{/font}" style "AM_player_buttonL" ypos fav_ypos action SetVariable("fav_years", "happy, hopefully"), SetScreenVariable("question", "None"), Jump("intro_sheet")( m9 K' L% g {# _. X0 |(欢迎访问老王论坛:laowang.vip)
3 n4 p# p( Q% k( f( F if question == "hobby":9 p r! d) R' e# O8 W(欢迎访问老王论坛:laowang.vip)
vbox:
4 h& T4 ~8 z/ s/ K2 c xpos 670 ypos 6019 L! f# R8 o9 o, P% d(欢迎访问老王论坛:laowang.vip)
text "{i}In my spare time I like to...{/i}" style "AM_text", p+ C6 A) b$ X(欢迎访问老王论坛:laowang.vip)
grid 2 4:- |* O: K& B9 V" _(欢迎访问老王论坛:laowang.vip)
spacing 40 ypos 22
4 q& ^9 R( }* c( r" `7 x8 }0 U$ ` textbutton "{font=[name_font]}play video games{/font}" style "AM_player_buttonXL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "play video games"), Jump("intro_sheet")
; J6 |6 z. p2 l3 }7 G- x( } textbutton "{font=[name_font]}masturbate{/font}" style "AM_player_buttonM" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "masturbate"), Jump("intro_sheet"), Q9 ^ O0 c) t, s(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}take photos{/font}" style "AM_player_buttonM" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "take photos"), Jump("intro_sheet")
* _8 Y$ V0 A/ v! _, D4 c! ^0 | textbutton "{font=[name_font]}sleep{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "sleep"), Jump("intro_sheet")( Y$ f) D% _) v0 G1 M3 D- [. q(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}pet stray cats{/font}" style "AM_player_buttonL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "pet stray cats"), Jump("intro_sheet")
6 A. m! `; G, u8 v7 Z2 x* c- ~ textbutton "{font=[name_font]}work out{/font}" style "AM_player_buttonM" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "work out"), Jump("intro_sheet")
( C) t4 y @% Q; ]( h' d textbutton "{font=[name_font]}be with my friends{/font}" style "AM_player_buttonXL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "be with my friends"), Jump("intro_sheet")2 E4 i; ?: O [% |( A" R: u(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}be in nature{/font}" style "AM_player_buttonL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby", "be in nature"), Jump("intro_sheet")2 q6 N* v, E# C, |(欢迎访问老王论坛:laowang.vip)
& l: q/ J O* d* U+ j [5 z(欢迎访问老王论坛:laowang.vip)
if question == "hobby_reason":2 U |2 Z! L8 K# n7 z* [! Y. L(欢迎访问老王论坛:laowang.vip)
vbox:
- {0 V' j( |0 c' U. o; j xpos 670 ypos 601% y# [& o3 l* P7 D0 ~3 E4 U- F(欢迎访问老王论坛:laowang.vip)
text "{i}Because...{/i}" style "AM_text"
2 L7 u0 g% \4 A- c grid 2 4:/ g b! B- _ B: i(欢迎访问老王论坛:laowang.vip)
spacing 40 ypos 22/ D# B+ F: ` D8 P(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}I have no life{/font}" style "AM_player_buttonL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "I have no life"), Jump("intro_sheet")$ Z% k3 B6 Y$ `9 M$ Z(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}it's fun{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "it's fun"), Jump("intro_sheet")4 \# Q) j- y+ p; T# L5 w' h& L(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}I want to improve{/font}" style "AM_player_buttonXL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "I want to improve"), Jump("intro_sheet"), k( p' ]2 @1 f" b- L% S2 [(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}it makes me happy{/font}" style "AM_player_buttonXL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "it makes me happy"), Jump("intro_sheet")6 Z h/ i2 j$ m" K- v3 C$ h3 m(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}it's healthy{/font}" style "AM_player_buttonM" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "it's healthy"), Jump("intro_sheet")# S, d" q3 k0 W(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}why not{/font}" style "AM_player_buttonS" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "why not"), Jump("intro_sheet")0 W( ^) Z' H! P3 c4 k, w5 s(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}I'm addicted{/font}" style "AM_player_buttonM" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "I'm addicted"), Jump("intro_sheet")" g1 S" T1 Z( J9 A. t* Y(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}I'm good at it{/font}" style "AM_player_buttonL" ypos fav_ypos action SetScreenVariable("question", "None"), SetVariable("fav_hobby_reason", "I'm good at it"), Jump("intro_sheet")7 ?2 T: y! E$ u. w. `# l(欢迎访问老王论坛:laowang.vip)
" w9 H5 r, m5 k3 S9 c- V8 R fixed:/ N9 X c% {6 G(欢迎访问老王论坛:laowang.vip)
xpos 670 ypos 224
, ^& V! Z" N! i% B) l hbox:
' c% s& z0 b" }! g! T, B5 U; { spacing 15# ]" d q& e( a$ j$ Z) H(欢迎访问老王论坛:laowang.vip)
text "1. My name is" style "AM_text"/ _$ s/ |8 l$ z' n(欢迎访问老王论坛:laowang.vip)
text "{font=[name_font]}[y2]{/font}" style "AM_player_text" ypos fav_ypos
' K, X- [' E9 D% R: L/ @5 j+ r/ f; v% U+ ~(欢迎访问老王论坛:laowang.vip)
hbox:- j; Q5 K# a8 Q2 Q, x0 t(欢迎访问老王论坛:laowang.vip)
ypos 50 spacing 15
' ?8 r: W" v3 Q" }7 g4 q text "2. I am" style "AM_text" r- J. ^- e: `4 h9 F) K. X(欢迎访问老王论坛:laowang.vip)
text "{font=[name_font]}19{/font}" style "AM_player_text" ypos fav_ypos
h9 d& E5 O- y/ z8 O1 H text "years old." style "AM_text"1 A! z; J! j* q(欢迎访问老王论坛:laowang.vip)
$ l2 e! c" ^4 e I: Z(欢迎访问老王论坛:laowang.vip)
hbox:* _ \! E/ P! R, L# r(欢迎访问老王论坛:laowang.vip)
ypos 100 spacing 15
. o) C2 u* t( I$ b5 u text "3. My favorite color is" style "AM_text"8 c7 ^( I# G9 B4 z# Y6 r6 I, `" Q- f(欢迎访问老王论坛:laowang.vip)
text "{font=[name_font]}[fav_color]{/font}" style "AM_player_text" ypos fav_ypos( t8 s8 f+ t) ^( n4 c(欢迎访问老王论坛:laowang.vip)
/ N* i6 F. b+ s+ w$ @3 J/ \ hbox:% a" C5 B, I: N(欢迎访问老王论坛:laowang.vip)
ypos 150 spacing 15
8 O* t( X; m- @( Q1 S% h6 d text "4. My favorite food is" style "AM_text"
1 V; l2 I8 W1 ?" f textbutton "{font=[name_font]}[fav_food]{/font}" style "AM_player_button2" ypos fav_ypos action SetScreenVariable("question", "food"), SelectedIf(fav_food == "(Select)")
0 c" U* U' A: Z5 N, y4 V* H! H& P
& W* b9 {! |) d hbox:
% r4 z& ?9 x% v5 K4 `: d ypos 200 spacing 15! P, B9 T3 ^) c! ^- ^(欢迎访问老王论坛:laowang.vip)
text "5. In 5 years I see myself" style "AM_text"/ X1 @9 s6 C+ h3 P; ?5 w& e(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}[fav_years]{/font}" style "AM_player_button2" ypos fav_ypos action SetScreenVariable("question", "years"), SelectedIf(fav_years == "(Select)")
$ b# a# K4 J1 N$ W- z
3 j6 r; t( e" h9 v hbox:
* W' s% O5 D0 _: J3 f* F" Q ypos 250 spacing 15
+ i2 r3 L$ u3 F5 j* ^6 d% R4 } text "6. In my spare time I like to" style "AM_text"+ N1 H+ N; {: ]/ S(欢迎访问老王论坛:laowang.vip)
textbutton "{font=[name_font]}[fav_hobby]{/font}" style "AM_player_button2" ypos fav_ypos action SetScreenVariable("question", "hobby"), SelectedIf(fav_hobby == "(Select)")# C8 t8 y( u u6 S |& ?(欢迎访问老王论坛:laowang.vip)
* p9 h5 O; l. K9 E/ G hbox:( ?6 M; [0 M; i6 Q& E, P(欢迎访问老王论坛:laowang.vip)
ypos 300 spacing 15
1 i% j. t' }" \9 B7 G# C7 I text "because " style "AM_text"
# E, r; {! L4 k3 _5 I textbutton "{font=[name_font]}[fav_hobby_reason]{/font}" style "AM_player_button2" ypos fav_ypos action SetScreenVariable("question", "hobby_reason"), SelectedIf(fav_hobby_reason == "(Select)")
* r; G: ]5 [# `& }) G/ h |
|