To make the mini-game easy, edit these values in the file The Sultan and His Harem\game\hunt\hunt.rpy with a text editor, make sure to not add or remove spaces.
I'm adding quoting marks "these", they are not part of the code, just what is inside the quoting marks.
Replace 15 with 150 (just add a 0 after 5) in both "TIME_LIMIT = 15" and "BULLET_MAX = 15", change 1.0 into 10.0 (by adding a 0 after 1) "target_speed=1.0", change "self.target_speed = renpy.random.randint(1, 2) + 0.5" into "self.target_speed = renpy.random.randint(10, 20) + 0.5"
You just have to do 9 left mouse clicks, once you in the minigame. The targets are moving slow, so it's very easy. If need it even more easy, change speed to 100 instead of 10, 200 instead of 20.
I included the file in attachment, but if this changes in future versions, you know how to change the code now to make it easy. You can edit your file, or download this and replace it.
The Sultan and His Harem\game\hunt\hunt.rpy (you may have different game folder name, just the part starting with "game" matters)
Other changes:
1. Add code in game\screens.rpy to have outlines around text. After that can set text opacity box to left in Preferences to make it fully transparent.
style say_label:
properties gui.text_properties("name", accent=True)
outlines [ (absolute(1), "#FFF", absolute(0), absolute(0)) ]
style say_dialogue:
properties gui.text_properties("dialogue")
outlines [ (absolute(1), "#000", absolute(0), absolute(0)) ]
Edit: I just edit this post to make it clear that the site changed the code format and there are 4 spaces before the words "properties" and "outlines", you will see it when searching in your own file, keep it the same as "properties" has in your file, that's the line above. Press enter to add another line, but keep everything intact or you will get crash on starting.
2. Change code to allow the game start faster: in game\script.rpy, just in "label splashscreen" section (that is near the start of the file) change (a few, 4-5 instances of) pause 6.0 and $ renpy.pause(8.5, hard=True) into 0.1 (change just the numbers, leave alone code and spaces
Both of these are in attachment, may not work replacing them if this file changes in future versions, so just edit the code instead with something like Notepad++