<?xml version="1.0" encoding="utf-8"?><!DOCTYPE article  PUBLIC '-//OASIS//DTD DocBook XML V4.4//EN'  'http://www.docbook.org/xml/4.4/docbookx.dtd'><article><articleinfo><title>Comments</title><revhistory><revision><revnumber>6</revnumber><date>2012-11-06 00:03:48</date><authorinitials>Susannah</authorinitials></revision><revision><revnumber>5</revnumber><date>2012-09-18 17:59:31</date><authorinitials>Inanna</authorinitials></revision><revision><revnumber>4</revnumber><date>2012-09-18 17:58:32</date><authorinitials>Inanna</authorinitials></revision><revision><revnumber>3</revnumber><date>2012-09-18 17:58:19</date><authorinitials>Inanna</authorinitials></revision><revision><revnumber>2</revnumber><date>2012-09-18 13:29:57</date><authorinitials>Inanna</authorinitials></revision><revision><revnumber>1</revnumber><date>2012-09-18 13:28:24</date><authorinitials>Inanna</authorinitials></revision></revhistory></articleinfo><para>You may &quot;comment&quot; out certain lines by adding a // or # at the beginning of the line. The bot will not perform any goals or scripts written on a commented line.  </para><para>This is a good way to remind yourself what a line is meant to do, e.g.: </para><itemizedlist><listitem override="none"><screen><![CDATA[// Tell my bot not to fire any hero I capture of lvl 100 or higher
keepcapturedheroes any:level>=100
// Tell my bot to farm lvl 5 npcs
config npc:5]]></screen></listitem></itemizedlist><para>It is also a good way to temporarily turn off a feature in your goals, e.g.: </para><itemizedlist><listitem override="none"><screen><![CDATA[// Disable the next line temporarily until I get around to porting my city...
#keepresource AnotherTown w:20000000,i:20000000 5000000]]></screen></listitem></itemizedlist><para>You can also use comments to separate your goals into sections, e.g.: </para><itemizedlist><listitem override="none"><screen><![CDATA[// resource stuff
config trade:1
tradepolicy /type:food /min:3d /batch:1m
tradepolicy /type:wood /min:10m /max:30m /batch:1m /allowselltomin
tradepolicy /type:stone /min:500m /batch:1m
tradepolicy /type:iron /min:10m /max:30m /batch:1m /allowselltomin
tradepolicy /type:gold /min:100m
keepresources hubcity w:25m,i:25m,f:700m 10m
]]><![CDATA[
// hero stuff
config hero:20,keepatthome:1,feastinghallspace:1
keepheroes any:level>=100|any:base>=65
keepcapturedheroes any:level>=100|any:base>=70
traininghero bigdude 120 180 0
]]><![CDATA[
// farming stuff
config npc:5,buildnpc:5
npcheroes 5 any,!bigdude]]></screen></listitem></itemizedlist><!--rule (<hr>) is not applicable to DocBook--><para> <ulink url="http://guide.neatportal.com/wiki/Comments/wiki/CategoryHowTo#">CategoryHowTo</ulink> </para></article>