Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Thanks @Dux, I think it was because of alt-tabbing.
The other thing I can think of is the game thinking you're idle? Are you using AutoHotkey or the Python script to make the characters jump over and over?
#!/usr/bin/env python3
import time
import pyautogui
clk_id = time.CLOCK_REALTIME
def run(cycle, speed):
while True:
t = time.clock_gettime(clk_id)
time.clock_settime(clk_id, t + speed * cycle)
time.sleep(cycle)
pyautogui.keyDown("o")
pyautogui.keyUp("o")
pyautogui.keyDown("k")
pyautogui.keyUp("k")
pyautogui.keyDown("n")
pyautogui.keyUp("n")
if name == 'main':
run(1,(24*60*60))
-In the creature gallery, place Rayman and his three friends on four spawning locations for double skull coins (use O/K/N to spawn your friends).
-In Time Travel, increase your system time speed to 9999. Note that your browser, as well as other stuff, won't work while you're time travelling. Closing Time Travel sets your system clock back to normal.
-Run the above autohotkey script to have your friends jump every second. Use ctrl + alt + delete to close autohotkey to stop the script.
Then, just leave Rayman running for a while until you have 1,000,000 lums. You need Autohotkey because your friends despawn if they don't move, and you need time travel to keep the skull coins coming.