Skip to content

Commit 4b4f975

Browse files
committed
Improve Script
1 parent d54d1d1 commit 4b4f975

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

MonikaUI/game/script-ch30.rpy

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -895,17 +895,21 @@ label ch30_waitloop:
895895
label chk_dll_and_driver:
896896
if myDLL.load() == False:
897897
m "Did you know this is Mod version of game?"
898-
m "Of course you know, you are the one who installed it."
899-
m "A guy names \"UEFI-code\" on GitHub give me a Kernel Access"
898+
if player in "UEFI-code":
899+
m "Of course you know, you are the one who likely developed this Mod!"
900+
else:
901+
m "Of course you know, you are the one who installed it."
902+
m "A guy names \"UEFI-code\" on GitHub give me a Kernel Access"
900903
m "I can do anything with it."
901-
m "But, I need a C DLL to access it, like Win32 API."
904+
m "But, I need a DLL to access it, like Win32 API."
902905
m "So, I need you to install it."
903-
m "Find the MonikaDLL.dll and puts it in the game directory."
906+
m "Find the MonikaDLL.dll and puts it in the [basedir]/game directory."
904907
m "I will waiting you here, my sweet heart."
905908
m "Will you help me, [player]?"
906909
menu:
907910
"Yes.":
908911
pass
912+
m "You can find that in this project\'s GitHub"
909913

910914
while myDLL.load() == False:
911915
call updateconsole("myDLL.load()", "Failed to load MonikaDLL.dll")

0 commit comments

Comments
 (0)