From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26289 invoked by alias); 1 Dec 2003 22:35:57 -0000 Mailing-List: contact xconq7-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: xconq7-owner@sources.redhat.com Received: (qmail 26282 invoked from network); 1 Dec 2003 22:35:56 -0000 Received: from unknown (HELO smtp14.fre.skanova.net) (195.67.227.31) by sources.redhat.com with SMTP; 1 Dec 2003 22:35:56 -0000 Received: from [212.181.162.155] (h155n1fls24o1048.bredband.comhem.se [212.181.162.155]) by smtp14.fre.skanova.net (8.12.10/8.12.10) with ESMTP id hB1MZsMT012087; Mon, 1 Dec 2003 23:35:55 +0100 (CET) X-Sender: u22611592@m1.226.comhem.se Message-Id: In-Reply-To: <20031201221425.20869.qmail@web13123.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Mon, 01 Dec 2003 23:18:00 -0000 To: Elijah Meeks From: Hans Ronne Subject: Re: Reduced Visibility Table? Cc: xconq7@sources.redhat.com X-SW-Source: 2003/txt/msg00934.txt.bz2 >Is there a way to make units less visible--submarines >and spies, for example, that could only be seen by >adjacent units (Even if the other unit has a visual >range higher than 1)? DEF_UU_TABLE("see-chance", uu_see, "chance for a type of unit to see another type at a distance", uusee, constuusee, 0, 100, TABHI, TABINT) DEF_UU_TABLE("see-chance-adjacent", uu_see_adj, "chance for a type of unit to see another type in the same cell", uuseeadj, constuuseeadj, 0, 100, TABHI, TABINT) DEF_UU_TABLE("see-chance-at", uu_see_at, "chance for a type of unit to see another type in an adjacent cell", uuseeat, constuuseeat, 0, 100, TABHI, TABINT) >Also, does anyone know a way to set unit ACP to 0 on >creation? Depends on what you want to achieve. If you want your unit to be unable to do anything just set acp-per-turn to 0. If you want your unit to be unbound by acp (e.g. in building) set acp-independent to true. Hans