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
BreakInfinity(false)
Repeat (10, false)
EnterIC(1, true)
EnterIC(2, true)
EnterIC(3, true)
EnterIC(4, true)
EnterIC(5, true)
EnterIC(6, true)
EnterIC(7, true)
EnterIC(8, true)
EnterIC(9, true)
BreakInfinity(true)
you can at Repeat(10, false) put any number you want
i use this bc it will let you fully idle eternitys till you get the milestone that makes it irrelevant
basically it waits will you have 10k IP (can be changed) and fixes infinity to auto complete then it does all the challenges and brakes infinity again after that it will go idle till you eternity again.
hope this helps :D
Repeat (5, true)
if (IP >= 10000)
BreakInfinity(false)
EnterIC(1, true)
EnterIC(2, true)
EnterIC(3, true)
EnterIC(4, true)
EnterIC(5, true)
EnterIC(6, true)
EnterIC(7, true)
EnterIC(8, true)
EnterIC(9, true)
Break()
BreakInfinity(true)
Repeat (5, true)
if (IP <= 10000)
Restart()
Works best with Eternity Milestone 7, but becomes obsolete with Challenge Milestone 1.
Can run in a loop and with Startup Execution.
if (IP == 0.00)
WaitForSeconds(15.0)
WaitUntil (Score <= 1.00 && IP != 0.00)
WaitForSeconds(8.0)
if (IP != 0.00)
Repeat (9, false)
EnterIC(0, true)
BreakInfinity(true)
Restart()
else
Stop()
else
WaitUntil (Score <= 1.00 && IP == 0.00)
Restart()
Essentially, it will wait until an Eternity occurs, countdown from a timer (as a buffer in case challenges aren't ready yet) and then execute the main part. You can probably adjust the blocks (specifically the timers) to better suit your current progression.