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
Edit: You don't mention how you actually generate your "Zerglings". If you actually programmed 8 different ones then there is a more elegant solution (and one that fits in the size limit): Self-replication. But the file retrieval works as you described.
I manually created the Exabots and copy pasted the sourcce inn each, but had to modify the destination link numbers for each. Yuck. It's like using a stick of dynnsmite to deal with termite infestation.
That probably brought you over the size limit.
As I hinted at above, you can have a single self-replicating EXA to do the same thing.
You're right, it did take me over the qualifications to put my solution on the charts. I was happy with that. I just wanted the solution solved. I struggled with it for a while.
I suspect you mean the REPL command. I actually considered that but at the time it did not fit what I needed because the link logic in the Exabot to be replicated only pointed to one destination (the first location of the Exabot holding the file). Multiple replications, though elegant, would have sent them all barrelling to one location, not one to each location. Manual duplication and a rather tedious copy and paste of source was the only way -- at the time -- to solve the problem.
I'll play around with the REPL command in practice. I don't have a sandbox to work with so I will use a new solution file with the current map. The only way at the top of my head to make this work is to code all eight link paths to each box, bordered by MARK statements to JUMP to. With every replicate statement, the label would be the name of the MARK segment to execute that puts the bot where it should be. THat's still a lot of code to type, and it may still knock me over the limit. I'll give it a try.
EDIT: tried the REPL command and it did work. It saves me having to do a manual copy and paste since I enter all the pathway links in one Exabot. While it still knocked me over the limit, it was only by 15 as opposed to 33.
Thanks for the help.
You're right! I spawned the replicas at my home host. I could have done that in steps that do not change in link number. This will cut down on a lot of link statements!