Yakuza: Like a Dragon

Yakuza: Like a Dragon

View Stats:
SL128 Nov 20, 2020 @ 7:09am
Where do I get Quality Eggs?
The only Part-Time Hero missions I have in the first category are the last two egg ones. I tried getting a fourth egg from Omelette in hopes that it would be quality, but it was just another standard egg.
Originally posted by Yukimura:
talk 21 times with the chicken for random egg, good luck with the gold egg.
< >
Showing 1-6 of 6 comments
marsHm311oW Nov 20, 2020 @ 9:05am 
Ask the chicken in your company.
The author of this thread has indicated that this post answers the original topic.
Yukimura Nov 20, 2020 @ 2:18pm 
talk 21 times with the chicken for random egg, good luck with the gold egg.
SL128 Nov 20, 2020 @ 4:06pm 
wow, what an awful design
Dan loeb Nov 26, 2020 @ 7:03pm 
Originally posted by SL128:
wow, what an awful design

invest in a controller with auto turbo buttons, or use a key press automator. it's pretty bad. would have been better if they went with a random chance of 1 in 5 or 1 in 10 on each convo with the bird.
DS9 Nov 26, 2020 @ 8:02pm 
If you are lazy and have python installed feel free to copy this into a py doc.
I made a script to auto press E so i could go and make dinner and come back with ~tons of eggs

import time import threading from pynput.mouse import Controller, Button from pynput.keyboard import Listener, KeyCode import pyautogui start_stop_key = KeyCode(char='[') exit_key = KeyCode(char=']') keyboard = Controller() delay = 0.25 class mainbotrunning(threading.Thread): def __init__(self, delay): super(mainbotrunning, self).__init__() self.delay = delay self.running = False self.program_running = True def start_botting(self): self.running = True def stop_botting(self): self.running = False def exit(self): self.stop_botting() self.program_running = False def run(self): while self.program_running: while self.running: pyautogui.keyDown("e") time.sleep(self.delay) pyautogui.keyUp("e") time.sleep(0.1) bot_thread = mainbotrunning(delay) bot_thread.start() def on_press(key): if key == start_stop_key: if bot_thread.running: bot_thread.stop_botting() else: bot_thread.start_botting() elif key == exit_key: bot_thread.exit() listener.stop() with Listener(on_press=on_press) as listener: listener.join()

This code isnt well made but it works
[ will start and pause script
] will exit script
Last edited by DS9; Nov 26, 2020 @ 8:04pm
Dżuma Dec 4, 2022 @ 12:23am 
thanks
i had to install pynput and pyautogui but it worked
< >
Showing 1-6 of 6 comments
Per page: 1530 50

Date Posted: Nov 20, 2020 @ 7:09am
Posts: 6