Virus

From WikiManual
Revision as of 20:52, 24 November 2005 by Endy (talk | contribs) (gen edit)
Jump to: navigation, search

Viruses are small shots that have long ranges and carry foreign DNA to inject into other cells.

Overview

Like real viruses DB viruses are not able to reproduce by themselves, they must steal nrg from bots to duplicate themselves. Outside of the bot they exist as shots. Whithin these cyan colored "shots" is the viral DNA.

Viruses are made up of a single gene (note: Numsgil is currently working to losen the constriction to simply a length of DNA) that can be shot out and infect any bot it hits. "Infected" means it is inserted randomly into the effected bot's genome. A virus could look like, for example:

cond
start
0 .repro store
*.thisgene .mkvirus store
50 .vshoot store
stop

*.thisgene tells where in the genome the gene is, .mkvirus makes the gene stored into it into a virus, and .vshoot determines how far the virus will go. The larger the value in .vshoot, the more costly the virus is to fire. The larger the code being copied into the virus, the longer the copying takes. This time can be read from vtimer. The above viral code, if inserted after the reproduction gene, would basically sterilize the bot, making it unable to reproduce.

Virus Creation Guide

To make a virus you should follow these steps.

  • 1 Decide which of your own genes to copy into the virus. You can have a self-replicating virus by using the *.thisgene command.
  • 2 Store this value into the .mkvirus command. eg: This will copy the virus's gene into a temporary storage array to create the virus.
  • 3 It takes a finite amount of time to copy this gene into the virus so at the beginning of the process, the gene length is calculated and this value is placed into a count-down timer which can be accessed by the robot via .vtimer(vtimer is the length of the DNA being copied * 2). This is a read only value indicating how long you have to wait until the virus is ready. Vtimer is 1 when there is a virus ready to fire. 0 if there is no virus either ready or being constructed, > 1 if there is still time left to wait.
  • 4 Once .vtimer reaches 1, the virus is ready and can be fired by placing any non-zero value into .vshoot. This will shoot the virus straight forward. As of last check both backshot and .aimshot work with viruses.
  • 5 The virus will appear as a cyan colored shot. It can most easily be distinguished by the normally longer distance it travels.

Note: Normal shot color is determined by the color of a bot firing it. If a shot is cyan, but no cyan bots are on the screen chances are it is a virus.

Little Viruses

Here are a few of the smaller viruses that have been thought up.

'Small but with increasing numbers inside a cell will steal more and more nrg.
cond
start
.vshoot inc
*.thisgene .mkvirus store
stop