wpdev-commits Mailing List for Wolfpack Emu (Page 186)
Brought to you by:
rip,
thiagocorrea
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(14) |
Aug
(121) |
Sep
(256) |
Oct
(59) |
Nov
(73) |
Dec
(120) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(259) |
Feb
(381) |
Mar
(501) |
Apr
(355) |
May
(427) |
Jun
(270) |
Jul
(394) |
Aug
(412) |
Sep
(724) |
Oct
(578) |
Nov
(65) |
Dec
|
|
From: <dar...@us...> - 2003-09-30 15:07:01
|
Update of /cvsroot/wpdev/wolfpack/python
In directory sc8-pr-cvs1:/tmp/cvs-serv14446/python
Modified Files:
char.cpp item.cpp pycoord.cpp
Log Message:
Encryption Fixes for Linux and
some Python Fixes / Additions.
Index: char.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/char.cpp,v
retrieving revision 1.109
retrieving revision 1.110
diff -C2 -d -r1.109 -r1.110
*** char.cpp 26 Sep 2003 00:01:52 -0000 1.109
--- char.cpp 30 Sep 2003 15:06:30 -0000 1.110
***************
*** 939,943 ****
{
PyErr_BadArgument();
! return NULL;
}
--- 939,943 ----
{
PyErr_BadArgument();
! return 0;
}
***************
*** 947,953 ****
object = getArgChar( 0 );
else if( checkArgItem( 0 ) )
! object = getArgItem( 0 );
! if( object )
self->pChar->turnTo( object );
--- 947,962 ----
object = getArgChar( 0 );
else if( checkArgItem( 0 ) )
! {
! P_ITEM pItem = getArgItem( 0 );
!
! pItem = pItem->getOutmostItem();
! if( pItem->container() && pItem->container()->isChar() )
! object = pItem->container();
! else
! object = pItem;
! }
!
! if( object && object != self->pChar )
self->pChar->turnTo( object );
***************
*** 1535,1538 ****
--- 1544,1622 ----
}
+ static PyObject* wpChar_cansee( wpChar *self, PyObject *args )
+ {
+ if( self->pChar->free )
+ return PyFalse;
+
+ PyObject *object = 0;
+ unsigned int touch = 1;
+
+ if( !PyArg_ParseTuple( args, "O|i:char.cansee( [char,item,pos], [touch] )", &object, &touch ) )
+ return 0;
+
+ Coord_cl &pos = Coord_cl::null;
+
+ // Item
+ if( checkWpItem( object ) )
+ {
+ P_ITEM pItem = getWpItem( object );
+
+ // Invisibility Check
+ if( ( ( pItem->visible() == 1 && pItem->owner() != self->pChar ) || pItem->visible() == 2 ) )
+ {
+ P_PLAYER pPlayer = dynamic_cast< P_PLAYER >( self->pChar );
+ if( !pPlayer || !pPlayer->isGM() )
+ return PyFalse;
+ }
+
+ pos = pItem->pos();
+ }
+
+ // Char
+ else if( checkWpChar( object ) )
+ {
+ P_CHAR pChar = getWpChar( object );
+
+ if( pChar->isHidden() || pChar->isInvisible() )
+ {
+ P_PLAYER pPlayer = dynamic_cast< P_PLAYER >( self->pChar );
+ if( !pPlayer || !pPlayer->isGM() )
+ return PyFalse;
+ }
+
+ pos = pChar->pos();
+ }
+
+ // Position
+ else if( checkWpCoord( object ) )
+ {
+ pos = getWpCoord( object );
+ }
+ else
+ {
+ PyErr_SetString( PyExc_RuntimeError, "Incompatible Object for char.cansee()." );
+ return 0;
+ }
+
+ if( pos == Coord_cl::null )
+ return PyFalse;
+
+ bool result = self->pChar->pos().lineOfSight( pos, touch != 0 );
+
+ return result ? PyTrue : PyFalse;
+ }
+
+ static PyObject* wpChar_lightning( wpChar *self, PyObject *args )
+ {
+ unsigned short hue = 0;
+
+ if( !PyArg_ParseTuple( args, "|h:char.lightning( [hue] )", &hue ) )
+ return 0;
+
+ self->pChar->lightning( hue );
+
+ return PyTrue;
+ }
+
static PyMethodDef wpCharMethods[] =
{
***************
*** 1564,1567 ****
--- 1648,1653 ----
{ "canreach", (getattrofunc)wpChar_canreach, METH_VARARGS, "Checks if this character can reach a certain object." },
{ "canpickup", (getattrofunc)wpChar_canpickup, METH_VARARGS, NULL },
+ { "cansee", (getattrofunc)wpChar_cansee, METH_VARARGS, NULL },
+ { "lightning", (getattrofunc)wpChar_lightning, METH_VARARGS, NULL },
// Mostly NPC functions
Index: item.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/item.cpp,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -d -r1.76 -r1.77
*** item.cpp 23 Sep 2003 23:55:25 -0000 1.76
--- item.cpp 30 Sep 2003 15:06:30 -0000 1.77
***************
*** 630,633 ****
--- 630,645 ----
}
+ static PyObject* wpItem_lightning( wpItem *self, PyObject *args )
+ {
+ unsigned short hue = 0;
+
+ if( !PyArg_ParseTuple( args, "|h:item.lightning( [hue] )", &hue ) )
+ return 0;
+
+ self->pItem->lightning( hue );
+
+ return PyTrue;
+ }
+
static PyMethodDef wpItemMethods[] =
{
***************
*** 646,650 ****
{ "getoutmostitem", (getattrofunc)wpItem_getoutmostitem, METH_VARARGS, "Get the outmost item." },
{ "getname", (getattrofunc)wpItem_getname, METH_VARARGS, "Get item name." },
! { "multi", (getattrofunc)wpItem_multi, METH_VARARGS, NULL },
// Effects
--- 658,663 ----
{ "getoutmostitem", (getattrofunc)wpItem_getoutmostitem, METH_VARARGS, "Get the outmost item." },
{ "getname", (getattrofunc)wpItem_getname, METH_VARARGS, "Get item name." },
! { "multi", (getattrofunc)wpItem_multi, METH_VARARGS, 0 },
! { "lightning", (getattrofunc)wpItem_lightning, METH_VARARGS, 0 },
// Effects
***************
*** 851,854 ****
return !( pA == pB );
}
-
-
--- 864,865 ----
Index: pycoord.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/pycoord.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** pycoord.cpp 10 Aug 2003 04:26:42 -0000 1.6
--- pycoord.cpp 30 Sep 2003 15:06:30 -0000 1.7
***************
*** 31,34 ****
--- 31,35 ----
#include "utilities.h"
#include "../coord.h"
+ #include "../walking.h"
/*!
***************
*** 75,81 ****
--- 76,106 ----
}
+ static PyObject *wpCoord_direction( wpCoord *self, PyObject *args )
+ {
+ // Check if the paramter is a coordinate
+ if( !checkWpCoord( PyTuple_GetItem( args, 0 ) ) )
+ {
+ return PyInt_FromLong( -1 );
+ }
+ else
+ {
+ Coord_cl pos = getWpCoord( PyTuple_GetItem( args, 0 ) );
+
+ // Calculate the distance
+ return PyInt_FromLong( self->coord.direction( pos ) );
+ }
+ }
+
+ static PyObject *wpCoord_validspawnspot( wpCoord *self, PyObject *args )
+ {
+ return Movement::instance()->canLandMonsterMoveHere( self->coord ) ? PyTrue : PyFalse;
+ }
+
static PyMethodDef wpCoordMethods[] =
{
{ "distance", (getattrofunc)wpCoord_distance, METH_VARARGS, "Whats the distance between Point A and Point B" },
+ { "direction", (getattrofunc)wpCoord_direction, METH_VARARGS, NULL },
+ { "validspawnspot", (getattrofunc)wpCoord_validspawnspot, METH_VARARGS, NULL },
+ { 0, 0, 0, 0 }
};
|
|
From: <co...@us...> - 2003-09-30 06:39:39
|
Update of /cvsroot/wpdev/xmlscripts/definitions In directory sc8-pr-cvs1:/tmp/cvs-serv14203 Modified Files: scripts.xml Log Message: skill and stat commands added Index: scripts.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/scripts.xml,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** scripts.xml 27 Sep 2003 20:35:00 -0000 1.63 --- scripts.xml 30 Sep 2003 06:39:36 -0000 1.64 *************** *** 41,44 **** --- 41,46 ---- <script>wolfpack.commands.where</script> <script>wolfpack.commands.wipe</script> + <script>wolfpack.commands.skill</script> + <script>wolfpack.commands.stat</script> <!-- Magic --> |
|
From: <co...@us...> - 2003-09-29 19:23:54
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/buildings In directory sc8-pr-cvs1:/tmp/cvs-serv16399 Modified Files: fences.xml Log Message: nodecay fix Index: fences.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/fences.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fences.xml 27 Sep 2003 19:49:13 -0000 1.4 --- fences.xml 29 Sep 2003 19:23:43 -0000 1.5 *************** *** 12,51 **** <!-- Wooden Fence 1 --> <item id="3b3"> ! <id>0x03b3</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 1</category> </item> <item id="3b4"> ! <id>0x03b4</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 2</category> </item> <item id="3b5"> ! <id>0x03b5</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 3</category> </item> <item id="3b6"> ! <id>0x03b6</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 4</category> </item> <item id="21d1"> ! <id>0x21d1</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 5</category> </item> <item id="21d2"> ! <id>0x21d2</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 6</category> </item> <item id="21d3"> ! <id>0x21d3</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 7</category> </item> <item id="21d4"> ! <id>0x21d4</id> </nodecay> <category>Buildings\Fences\Wooden Fence 1\Fence 8</category> </item> --- 12,51 ---- <!-- Wooden Fence 1 --> <item id="3b3"> ! <id>0x03b3</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 1</category> </item> <item id="3b4"> ! <id>0x03b4</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 2</category> </item> <item id="3b5"> ! <id>0x03b5</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 3</category> </item> <item id="3b6"> ! <id>0x03b6</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 4</category> </item> <item id="21d1"> ! <id>0x21d1</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 5</category> </item> <item id="21d2"> ! <id>0x21d2</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 6</category> </item> <item id="21d3"> ! <id>0x21d3</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 7</category> </item> <item id="21d4"> ! <id>0x21d4</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 1\Fence 8</category> </item> *************** *** 53,152 **** <!-- Rails --> <item id="7d7"> ! <id>0x07d7</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 1</category> </item> <item id="7d8"> ! <id>0x07d8</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 2</category> </item> <item id="8eb"> ! <id>0x08eb</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 2</category> </item> <item id="8ec"> ! <id>0x08ec</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 3</category> </item> <item id="8ed"> ! <id>0x08ed</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 4</category> </item> <item id="8ee"> ! <id>0x08ee</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 5</category> </item> <item id="8ef"> ! <id>0x08ef</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 6</category> </item> <item id="8f0"> ! <id>0x08f0</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 7</category> </item> <item id="8f1"> ! <id>0x08f1</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 8</category> </item> <item id="8f2"> ! <id>0x08f2</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 9</category> </item> <item id="8f3"> ! <id>0x08f3</id> </nodecay> <category>Buildings\Fences\Rail\Sandstone Rail 1</category> </item> <item id="8f4"> ! <id>0x08f4</id> </nodecay> <category>Buildings\Fences\Rail\Sandstone Rail 2</category> </item> <item id="8f5"> ! <id>0x08f5</id> </nodecay> <category>Buildings\Fences\Rail\Sandstone Rail 3</category> </item> <item id="8f6"> ! <id>0x08f6</id> </nodecay> <category>Buildings\Fences\Rail\Sandstone Rail 4</category> </item> <item id="8f7"> ! <id>0x08f7</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 10</category> </item> <item id="8f8"> ! <id>0x08f8</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 11</category> </item> <item id="8f9"> ! <id>0x08f9</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 12</category> </item> <item id="8fa"> ! <id>0x08fa</id> </nodecay> <category>Buildings\Fences\Rail\Stone Rail 13</category> </item> <item id="8fb"> ! <id>0x08fb</id> </nodecay> <category>Buildings\Fences\Rail\Rail 1</category> </item> <item id="8fc"> ! <id>0x08fc</id> </nodecay> <category>Buildings\Fences\Rail\Rail 2</category> </item> --- 53,152 ---- <!-- Rails --> <item id="7d7"> ! <id>0x07d7</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 1</category> </item> <item id="7d8"> ! <id>0x07d8</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 2</category> </item> <item id="8eb"> ! <id>0x08eb</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 2</category> </item> <item id="8ec"> ! <id>0x08ec</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 3</category> </item> <item id="8ed"> ! <id>0x08ed</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 4</category> </item> <item id="8ee"> ! <id>0x08ee</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 5</category> </item> <item id="8ef"> ! <id>0x08ef</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 6</category> </item> <item id="8f0"> ! <id>0x08f0</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 7</category> </item> <item id="8f1"> ! <id>0x08f1</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 8</category> </item> <item id="8f2"> ! <id>0x08f2</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 9</category> </item> <item id="8f3"> ! <id>0x08f3</id> <nodecay/> <category>Buildings\Fences\Rail\Sandstone Rail 1</category> </item> <item id="8f4"> ! <id>0x08f4</id> <nodecay/> <category>Buildings\Fences\Rail\Sandstone Rail 2</category> </item> <item id="8f5"> ! <id>0x08f5</id> <nodecay/> <category>Buildings\Fences\Rail\Sandstone Rail 3</category> </item> <item id="8f6"> ! <id>0x08f6</id> <nodecay/> <category>Buildings\Fences\Rail\Sandstone Rail 4</category> </item> <item id="8f7"> ! <id>0x08f7</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 10</category> </item> <item id="8f8"> ! <id>0x08f8</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 11</category> </item> <item id="8f9"> ! <id>0x08f9</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 12</category> </item> <item id="8fa"> ! <id>0x08fa</id> <nodecay/> <category>Buildings\Fences\Rail\Stone Rail 13</category> </item> <item id="8fb"> ! <id>0x08fb</id> <nodecay/> <category>Buildings\Fences\Rail\Rail 1</category> </item> <item id="8fc"> ! <id>0x08fc</id> <nodecay/> <category>Buildings\Fences\Rail\Rail 2</category> </item> *************** *** 154,168 **** <!-- Iron Fence 1 --> <item id="821"> ! <id>0x0821</id> </nodecay> <category>Buildings\Fences\Iron Fence 1\Fence 1</category> </item> <item id="822"> ! <id>0x0822</id> </nodecay> <category>Buildings\Fences\Iron Fence 1\Fence 2</category> </item> <item id="823"> ! <id>0x0823</id> </nodecay> <category>Buildings\Fences\Iron Fence 1\Fence 3</category> </item> --- 154,168 ---- <!-- Iron Fence 1 --> <item id="821"> ! <id>0x0821</id> <nodecay/> <category>Buildings\Fences\Iron Fence 1\Fence 1</category> </item> <item id="822"> ! <id>0x0822</id> <nodecay/> <category>Buildings\Fences\Iron Fence 1\Fence 2</category> </item> <item id="823"> ! <id>0x0823</id> <nodecay/> <category>Buildings\Fences\Iron Fence 1\Fence 3</category> </item> *************** *** 170,189 **** <!-- Wooden Fence 2 --> <item id="835"> ! <id>0x0835</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 1</category> </item> <item id="836"> ! <id>0x0836</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 2</category> </item> <item id="837"> ! <id>0x0837</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 3</category> </item> <item id="838"> ! <id>0x0838</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 4</category> </item> --- 170,189 ---- <!-- Wooden Fence 2 --> <item id="835"> ! <id>0x0835</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 1</category> </item> <item id="836"> ! <id>0x0836</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 2</category> </item> <item id="837"> ! <id>0x0837</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 3</category> </item> <item id="838"> ! <id>0x0838</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 4</category> </item> *************** *** 191,205 **** <!-- Iron Fence 2 --> <item id="849"> ! <id>0x0849</id> </nodecay> <category>Buildings\Fences\Iron Fence 2\Fence 1</category> </item> <item id="84a"> ! <id>0x084a</id> </nodecay> <category>Buildings\Fences\Iron Fence 2\Fence 2</category> </item> <item id="84b"> ! <id>0x084b</id> </nodecay> <category>Buildings\Fences\Iron Fence 2\Fence 3</category> </item> --- 191,205 ---- <!-- Iron Fence 2 --> <item id="849"> ! <id>0x0849</id> <nodecay/> <category>Buildings\Fences\Iron Fence 2\Fence 1</category> </item> <item id="84a"> ! <id>0x084a</id> <nodecay/> <category>Buildings\Fences\Iron Fence 2\Fence 2</category> </item> <item id="84b"> ! <id>0x084b</id> <nodecay/> <category>Buildings\Fences\Iron Fence 2\Fence 3</category> </item> *************** *** 207,236 **** <!-- Wooden Fence 2 --> <item id="85c"> ! <id>0x085c</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 1</category> </item> <item id="85d"> ! <id>0x085d</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 2</category> </item> <item id="85e"> ! <id>0x085e</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 3</category> </item> <item id="85f"> ! <id>0x085f</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 4</category> </item> <item id="860"> ! <id>0x0860</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 5</category> </item> <item id="861"> ! <id>0x0861</id> </nodecay> <category>Buildings\Fences\Wooden Fence 2\Fence 6</category> </item> --- 207,236 ---- <!-- Wooden Fence 2 --> <item id="85c"> ! <id>0x085c</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 1</category> </item> <item id="85d"> ! <id>0x085d</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 2</category> </item> <item id="85e"> ! <id>0x085e</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 3</category> </item> <item id="85f"> ! <id>0x085f</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 4</category> </item> <item id="860"> ! <id>0x0860</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 5</category> </item> <item id="861"> ! <id>0x0861</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 2\Fence 6</category> </item> *************** *** 238,257 **** <!-- Wooden Fence 3 --> <item id="862"> ! <id>0x0862</id> </nodecay> <category>Buildings\Fences\Wooden Fence 3\Fence 1</category> </item> <item id="863"> ! <id>0x0863</id> </nodecay> <category>Buildings\Fences\Wooden Fence 3\Fence 2</category> </item> <item id="864"> ! <id>0x0864</id> </nodecay> <category>Buildings\Fences\Wooden Fence 3\Fence 3</category> </item> <item id="865"> ! <id>0x0865</id> </nodecay> <category>Buildings\Fences\Wooden Fence 3\Fence 4</category> </item> --- 238,257 ---- <!-- Wooden Fence 3 --> <item id="862"> ! <id>0x0862</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 3\Fence 1</category> </item> <item id="863"> ! <id>0x0863</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 3\Fence 2</category> </item> <item id="864"> ! <id>0x0864</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 3\Fence 3</category> </item> <item id="865"> ! <id>0x0865</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 3\Fence 4</category> </item> *************** *** 259,268 **** <!-- Wooden Fence 4 --> <item id="877"> ! <id>0x0877</id> </nodecay> <category>Buildings\Fences\Wooden Fence 4\Fence 1</category> </item> <item id="878"> ! <id>0x0878</id> </nodecay> <category>Buildings\Fences\Wooden Fence 4\Fence 2</category> </item> --- 259,268 ---- <!-- Wooden Fence 4 --> <item id="877"> ! <id>0x0877</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 4\Fence 1</category> </item> <item id="878"> ! <id>0x0878</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 4\Fence 2</category> </item> *************** *** 270,279 **** <!-- Wooden Fence 5 --> <item id="88a"> ! <id>0x088a</id> </nodecay> <category>Buildings\Fences\Wooden Fence 5\Fence 1</category> </item> <item id="88b"> ! <id>0x088b</id> </nodecay> <category>Buildings\Fences\Wooden Fence 5\Fence 2</category> </item> --- 270,279 ---- <!-- Wooden Fence 5 --> <item id="88a"> ! <id>0x088a</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 5\Fence 1</category> </item> <item id="88b"> ! <id>0x088b</id> <nodecay/> <category>Buildings\Fences\Wooden Fence 5\Fence 2</category> </item> |
|
From: <co...@us...> - 2003-09-29 17:15:34
|
Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack In directory sc8-pr-cvs1:/tmp/cvs-serv20568 Modified Files: utilities.py Log Message: mining Index: utilities.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/utilities.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** utilities.py 28 Sep 2003 20:29:39 -0000 1.18 --- utilities.py 29 Sep 2003 17:15:20 -0000 1.19 *************** *** 223,227 **** def isoregem( item ): ! return item.id == 0x1ea7 and item.hastag( 'resource' ) and item.gettag( 'resource' ) == 'ore' and item.hastag( 'min' ) and item.hastag( 'max' ) def ismountainorcave( tile ): --- 223,227 ---- def isoregem( item ): ! return item.id == 0x1ea7 and item.hastag( 'resource' ) and item.gettag( 'resource' ) == 'ore' def ismountainorcave( tile ): |
|
From: <co...@us...> - 2003-09-29 17:15:08
|
Update of /cvsroot/wpdev/xmlscripts/scripts/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv20440
Modified Files:
pickaxe.py
Log Message:
mining
Index: pickaxe.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/tools/pickaxe.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pickaxe.py 28 Sep 2003 20:29:13 -0000 1.2
--- pickaxe.py 29 Sep 2003 17:14:54 -0000 1.3
***************
*** 7,10 ****
--- 7,11 ----
from wolfpack.consts import *
+ import whrandom
import wolfpack
import skills
***************
*** 12,15 ****
--- 13,19 ----
from wolfpack.utilities import *
+ orebank = [] # 8x8 ore and stone bank
+ sandbank = [] # 8x8 sand bank
+
def onUse( char, item ):
if item.getoutmostchar() != char:
***************
*** 50,60 ****
map = wolfpack.map( target.pos.x, target.pos.y, target.pos.map )
if ismountainorcave( map['id'] ):
! #add new ore gem here and mine
! gem = wolfpack.additem( 'ore_gem' )
! gem.ownervisible
! gem.moveto( target.pos.x, target.pos.y )
! gem.update()
! socket.sysmessage( 'Tile finded by position' )
! mining( char, gem )
else:
socket.clilocmessage( 501862, "", YELLOW, NORMAL ) # You can't mine there.
--- 54,59 ----
map = wolfpack.map( target.pos.x, target.pos.y, target.pos.map )
if ismountainorcave( map['id'] ):
! veingem = getvein( socket, target.pos )
! mining( char, veingem )
else:
socket.clilocmessage( 501862, "", YELLOW, NORMAL ) # You can't mine there.
***************
*** 65,78 ****
if ismountainorcave( target.model ):
#add new ore gem here and mine
! gem = wolfpack.additem( 'ore_gem' )
! gem.ownervisible
! gem.moveto( target.pos.x, target.pos.y )
! gem.update()
! socket.sysmessage( 'Target model is not zero' )
! mining( char, gem )
else:
socket.clilocmessage( 501862, "", YELLOW, NORMAL ) # You can't mine there.
return OK
-
else:
return OOPS
--- 64,72 ----
if ismountainorcave( target.model ):
#add new ore gem here and mine
! veingem = getvein( socket, target.pos )
! mining( char, veingem )
else:
socket.clilocmessage( 501862, "", YELLOW, NORMAL ) # You can't mine there.
return OK
else:
return OOPS
***************
*** 80,85 ****
return OK
! def mining( char, gem ):
socket = char.socket
! socket.sysmessage( 'Mining in progress... ' + str( gem.serial ) )
! return OK
\ No newline at end of file
--- 74,94 ----
return OK
! def mining( char, veingem ):
socket = char.socket
! resourcecount = veingem.gettag( 'resourcecount' )
! socket.sysmessage( 'Mining in progress... ' + str( resourcecount ) )
! return OK
!
!
! def getvein( socket, pos ):
! #Check if we have ore_gems near ( range = 4 )
! gems = wolfpack.items( pos.x, pos.y, pos.map, 4 )
! if len( gems ) < 1:
! gem = wolfpack.additem( 'ore_gem' )
! gem.settag( 'resourcecount', whrandom.randint( 10, 34 ) )
! gem.moveto( pos )
! gem.visible = 1
! gem.update()
! return gem
! else:
! return gems[0]
|
|
From: <co...@us...> - 2003-09-29 17:14:30
|
Update of /cvsroot/wpdev/xmlscripts/definitions/resources In directory sc8-pr-cvs1:/tmp/cvs-serv20334 Modified Files: resgems.xml Log Message: res_gem Index: resgems.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/resources/resgems.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** resgems.xml 28 Sep 2003 20:30:14 -0000 1.2 --- resgems.xml 29 Sep 2003 17:14:17 -0000 1.3 *************** *** 10,14 **** <item id="gem"> <id>0x1ea7</id> - <moveable>0</moveable> <nodecay/> </item> --- 10,13 ---- *************** *** 16,21 **** <item id="ore_gem" inherit="gem"> <tag name="resource" value="ore" type="string" /> - <tag name="min" value="10" type="int" /> - <tag name="max" value="34" type="int" /> <name>Ore gem</name> <category>Resources\Resource gems</category> --- 15,18 ---- |
|
From: <co...@us...> - 2003-09-29 13:27:30
|
Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack/commands
In directory sc8-pr-cvs1:/tmp/cvs-serv4351
Added Files:
skill.py stat.py
Log Message:
'stat and 'skill commands added
--- NEW FILE: skill.py ---
#===============================================================#
# ) (\_ | WOLFPACK 13.0.0 Scripts #
# (( _/{ "-; | Created by: codex #
# )).-' {{ ;'` | Revised by: #
# ( ( ;._ \\ ctr | Last Modification: Created #
#===============================================================#
# skill Command #
#===============================================================#
import wolfpack
import string
from wolfpack.consts import *
usage = 'Usage: skill <skill-name> <value*10>'
example = 'Example: skill mining 1000'
def skill( socket, command, args ):
args = args.strip() # Remove trailing and leading whitespaces
if len( args ) > 0:
try:
( skill, value ) = args.split( ' ' )
skill = str( skill )
value = int( value )
except:
socket.sysmessage( usage )
socket.sysmessage( example )
return OK
else:
socket.sysmessage( usage )
socket.sysmessage( example )
return OK
# Uknown skill name ?
if not skill in skillnamesids:
socket.clilocmessage( 500156, "", YELLOW, NORMAL ) # Invalid skill
# Accept 0 >= value <= 1000 skill value only. 1200 maximum - with power scrolls only
elif value < 0 or value > 1000:
socket.clilocmessage( 1005632, "", YELLOW, NORMAL ) # Skill values range from 0 - 1000.
return OK
socket.clilocmessage( 503403, "", YELLOW, NORMAL ) # Select the body.
socket.attachtarget( "wolfpack.commands.skill.callback", [ skill, value ] )
return OK
def callback( char, args, target ):
socket = char.socket
# What are you targeted ?
if not target.char:
socket.clilocmessage( 500931, "", YELLOW, NORMAL ) # Invalid mobile
return OK
# Is target not your own char ?
if not char == target.char:
socket.clilocmessage( 1005213, "", YELLOW, NORMAL ) # You can't do that
return OK
( skill, value ) = args
char.skill[ skillnamesids[ skill ] ] = value
return OK
def onLoad():
wolfpack.registercommand( "skill", skill )
--- NEW FILE: stat.py ---
#===============================================================#
# ) (\_ | WOLFPACK 13.0.0 Scripts #
# (( _/{ "-; | Created by: codex #
# )).-' {{ ;'` | Revised by: #
# ( ( ;._ \\ ctr | Last Modification: Created #
#===============================================================#
# stat Command #
#===============================================================#
import wolfpack
import string
from wolfpack.consts import *
usage = 'Usage: stat <short-stat-name> <value>'
example = 'Example: stat str 100'
def stat( socket, command, args ):
args = args.strip() # Remove trailing and leading whitespaces
if len( args ) > 0:
try:
( stat, value ) = args.split( ' ' )
stat = str( stat )
value = int( value )
except:
socket.sysmessage( usage )
socket.sysmessage( example )
return OK
else:
socket.sysmessage( usage )
socket.sysmessage( example )
return OK
# Uknown stat name ?
if not stat in statnames:
socket.clilocmessage( 3000380, "", YELLOW, NORMAL ) # I Accept
socket.sysmessage( str( statnames ) )
return OK
# Accept 10 >= value <= 125 only.
elif value < 0 or value > 125:
socket.clilocmessage( 1005628, "", YELLOW, NORMAL ) # Stats range between 10 and 125
return OK
socket.clilocmessage( 503403, "", YELLOW, NORMAL ) # Select the body.
socket.attachtarget( "wolfpack.commands.stat.callback", [ stat, value ] )
return OK
def callback( char, args, target ):
socket = char.socket
# What are you targeted ?
if not target.char:
socket.clilocmessage( 500931, "", YELLOW, NORMAL ) # Invalid mobile
return OK
# Is target not your own char ?
if not char == target.char:
socket.clilocmessage( 1005213, "", YELLOW, NORMAL ) # You can't do that
return OK
( stat, value ) = args
if stat == 'str':
char.strength = value
elif stat == 'int':
char.intelligence = value
elif stat == 'dex':
char.dexterity = value
else:
socket.clilocmessage( 3000380, "", YELLOW, NORMAL ) # I Accept
socket.sysmessage( str( statnames ) )
return OK
socket.clilocmessage( 1005630, "", YELLOW, NORMAL ) # Your stats have been adjusted.
char.updatestats()
return OK
def onLoad():
wolfpack.registercommand( "stat", stat )
|
|
From: <co...@us...> - 2003-09-29 13:26:31
|
Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv4135
Modified Files:
consts.py
Log Message:
'stat and 'skill commands added
Index: consts.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/consts.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** consts.py 28 Sep 2003 20:29:39 -0000 1.27
--- consts.py 29 Sep 2003 13:26:18 -0000 1.28
***************
*** 102,105 ****
--- 102,118 ----
'stealth', 'removetraps', 'necromancy', 'focus', 'chivalry' ]
+ skillnamesids = { 'alchemy' : ALCHEMY, 'anatomy' : ANATOMY, 'animallore' : ANIMALLORE, 'itemid' : ITEMID, 'armslore' : ARMSLORE, 'parrying' : PARRYING,
+ 'begging' : BEGGING, 'blacksmithing' : BLACKSMITHING, 'bowcraft' : BOWCRAFT, 'peacemaking' : PEACEMAKING, 'camping' : CAMPING, 'carpentry' : CARPENTRY,
+ 'cartography' : CARTOGRAPHY, 'cooking' : COOKING, 'detectinghidden' : DETECTINGHIDDEN, 'enticement' : ENTICEMENT, 'evaluatingintel' : EVALUATINGINTEL,
+ 'healing' : HEALING, 'fishing' : FISHING, 'forensics' : FORENSICS, 'herding' : HERDING, 'hiding' : HIDING, 'provocation' : PROVOCATION,
+ 'inscription' : INSCRIPTION, 'lockpicking' : LOCKPICKING, 'magery' : MAGERY, 'magicresistance' : MAGICRESISTANCE, 'tactics' : TACTICS, 'snooping' : SNOOPING,
+ 'musicianship' : MUSICIANSHIP, 'poisoning' : POISONING, 'archery' : ARCHERY, 'spiritspeak' : SPIRITSPEAK, 'stealing' : STEALING, 'tailoring' : TAILORING,
+ 'taming' : TAMING, 'tasteid' : TASTEID, 'tinkering' : TINKERING, 'tracking' : TRACKING, 'veterinary' : VETERINARY, 'swordsmanship' : SWORDSMANSHIP,
+ 'macefighting' : MACEFIGHTING, 'fencing' : FENCING, 'wrestling' : WRESTLING, 'lumberjacking' : LUMBERJACKING, 'mining' : MINING, 'meditation' : MEDITATION,
+ 'stealth' : STEALTH, 'removetraps' : REMOVETRAPS, 'necromancy' : NECROMANCY, 'focus' : FOCUS, 'chivalry' : CHIVALRY }
+
+
+ statnames = [ 'str', 'int', 'dex' ]
+
#Stats
MANA = 0
|
|
From: <co...@us...> - 2003-09-28 20:30:57
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/professions In directory sc8-pr-cvs1:/tmp/cvs-serv22743 Modified Files: miner.xml Log Message: continuing mining work Index: miner.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/miner.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** miner.xml 10 May 2003 00:16:40 -0000 1.5 --- miner.xml 28 Sep 2003 20:30:43 -0000 1.6 *************** *** 186,189 **** --- 186,190 ---- <durability>50</durability> <type>1104</type> + <events>tools.pickaxe</events> <category>Professions\Miner\Pickaxe (W/E)</category> </item> *************** *** 195,198 **** --- 196,200 ---- <durability>30</durability> <decay/> + <events>tools.pickaxe</events> <category>Professions\Miner\Shovel (W/E)</category> </item> |
|
From: <co...@us...> - 2003-09-28 20:30:29
|
Update of /cvsroot/wpdev/xmlscripts/definitions/resources In directory sc8-pr-cvs1:/tmp/cvs-serv22652 Modified Files: resgems.xml Log Message: continuing mining work Index: resgems.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/resources/resgems.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** resgems.xml 27 Sep 2003 20:34:38 -0000 1.1 --- resgems.xml 28 Sep 2003 20:30:14 -0000 1.2 *************** *** 10,14 **** <item id="gem"> <id>0x1ea7</id> ! <invisible/> <nodecay/> </item> --- 10,14 ---- <item id="gem"> <id>0x1ea7</id> ! <moveable>0</moveable> <nodecay/> </item> |
|
From: <co...@us...> - 2003-09-28 20:29:55
|
Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack In directory sc8-pr-cvs1:/tmp/cvs-serv22492 Modified Files: consts.py utilities.py Log Message: continuing mining work Index: consts.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/consts.py,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** consts.py 23 Sep 2003 12:17:39 -0000 1.26 --- consts.py 28 Sep 2003 20:29:39 -0000 1.27 *************** *** 296,297 **** --- 296,308 ---- LOG_TRACE = 5 LOG_DEBUG = 6 + + # Colors + YELLOW = 0x37 + GRAY = 0x3b2 + + # Fonts + NORMAL = 3 + + # Results + OK = 1 + OOPS = 0 Index: utilities.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/utilities.py,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** utilities.py 25 Sep 2003 14:28:43 -0000 1.17 --- utilities.py 28 Sep 2003 20:29:39 -0000 1.18 *************** *** 199,203 **** def isshield( item ): ! shields = [ 0x1b72, 0x1b73, 0x1b73, 0x1b74, 0x1b75, 0x1b76, 0x1b77, 0x1b78, \ 0x1b79, 0x1b7a, 0x1b7b, 0x1bc3, 0x1bc4, 0x1bc5 ] --- 199,203 ---- def isshield( item ): ! shields = [ 0x1b72, 0x1b73, 0x1b74, 0x1b75, 0x1b76, 0x1b77, 0x1b78, \ 0x1b79, 0x1b7a, 0x1b7b, 0x1bc3, 0x1bc4, 0x1bc5 ] *************** *** 218,219 **** --- 218,271 ---- return item.id in [ 0xE9C, 0xE9D, 0xE9E, 0xEB1, 0xEB2, 0xEB3, 0xEB4 ] + + def isminingtool( item ): + return item.id in [ 0xf39, 0xf3a, 0xe85, 0xe86 ] + + def isoregem( item ): + return item.id == 0x1ea7 and item.hastag( 'resource' ) and item.gettag( 'resource' ) == 'ore' and item.hastag( 'min' ) and item.hastag( 'max' ) + + def ismountainorcave( tile ): + return tile in range( 220, 231 ) + \ + range( 236, 247 ) + \ + range( 252, 263 ) + \ + range( 268, 279 ) + \ + range( 286, 297 ) + \ + range( 321, 324 ) + \ + range( 467, 474 ) + \ + range( 476, 487 ) + \ + range( 492, 495 ) + \ + range( 543, 579 ) + \ + range( 581, 601 ) + \ + range( 610, 613 ) + \ + range( 1339, 1359 ) + \ + range( 1361, 1363 ) + \ + range( 1386, 1386 ) + \ + range( 1741, 1757 ) + \ + range( 1771, 1790 ) + \ + range( 1801, 1824 ) + \ + range( 1831, 1854 ) + \ + range( 1861, 1884 ) + \ + range( 1981, 2004 ) + \ + range( 2028, 2033 ) + \ + range( 2100, 2105 ) + + def issand( tile ): + return tile in range( 22, 62 ) + \ + range( 68, 75 ) + \ + range( 286, 301 ) + \ + range( 402, 402 ) + \ + range( 424, 427 ) + \ + range( 441, 465 ) + \ + range( 642, 645 ) + \ + range( 650, 657 ) + \ + range( 821, 828 ) + \ + range( 833, 836 ) + \ + range( 845, 852 ) + \ + range( 857, 860 ) + \ + range( 951, 958 ) + \ + range( 967, 970 ) + \ + range( 1447, 1458 ) + \ + range( 1611, 1618 ) + \ + range( 1623, 1626 ) + \ + range( 1635, 1642 ) + \ + range( 1647, 1650 ) |
|
From: <co...@us...> - 2003-09-28 20:29:27
|
Update of /cvsroot/wpdev/xmlscripts/scripts/tools In directory sc8-pr-cvs1:/tmp/cvs-serv22371 Modified Files: pickaxe.py Log Message: continuing mining work Index: pickaxe.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/tools/pickaxe.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pickaxe.py 27 Sep 2003 20:33:46 -0000 1.1 --- pickaxe.py 28 Sep 2003 20:29:13 -0000 1.2 *************** *** 10,21 **** import skills from wolfpack.time import * ! import wolfpack.utilities def onUse( char, item ): ! char.socket.sysmessage( 'test' ) ! char.socket.attachtarget( "tools.pickaxe.response" ) ! return 1 def response( char, args, target ): ! char.socket.sysmessage( 'response' ) ! return 1 --- 10,85 ---- import skills from wolfpack.time import * ! from wolfpack.utilities import * def onUse( char, item ): ! if item.getoutmostchar() != char: ! char.socket.clilocmessage( 500364, "", YELLOW, NORMAL ) # You can't use that, it belongs to someone else ! return OOPS ! ! if isminingtool(item): ! char.socket.clilocmessage( 503033, "", YELLOW, NORMAL ) # Where do you wish to dig? ! char.socket.attachtarget( "tools.pickaxe.response" ) ! ! else: ! char.socket.clilocmessage( 500735, "", YELLOW, NORMAL ) # Don't play with things you don't know about. :) ! return OOPS ! ! return OK def response( char, args, target ): ! socket = char.socket ! ! if not socket: ! return OOPS ! ! #Player also can't mine when riding, polymorphed and dead. ! #Mine char ?! ! if target.char: ! socket.clilocmessage( 501863, "", YELLOW, NORMAL ) # You can't mine that. ! return OK ! ! #Check if item is ore gem ! elif target.item and isoregem( target.item ): ! #Mine if ore gem is validated ! socket.sysmessage( 'Ore gem founded' ) ! mining( char, target.item ) ! return OK ! ! #Find tile by it's position if we haven't model ! elif target.model == 0: ! map = wolfpack.map( target.pos.x, target.pos.y, target.pos.map ) ! if ismountainorcave( map['id'] ): ! #add new ore gem here and mine ! gem = wolfpack.additem( 'ore_gem' ) ! gem.ownervisible ! gem.moveto( target.pos.x, target.pos.y ) ! gem.update() ! socket.sysmessage( 'Tile finded by position' ) ! mining( char, gem ) ! else: ! socket.clilocmessage( 501862, "", YELLOW, NORMAL ) # You can't mine there. ! return OK ! ! #Find tile by it's model ! elif target.model != 0: ! if ismountainorcave( target.model ): ! #add new ore gem here and mine ! gem = wolfpack.additem( 'ore_gem' ) ! gem.ownervisible ! gem.moveto( target.pos.x, target.pos.y ) ! gem.update() ! socket.sysmessage( 'Target model is not zero' ) ! mining( char, gem ) ! else: ! socket.clilocmessage( 501862, "", YELLOW, NORMAL ) # You can't mine there. ! return OK ! ! else: ! return OOPS ! ! return OK ! ! def mining( char, gem ): ! socket = char.socket ! socket.sysmessage( 'Mining in progress... ' + str( gem.serial ) ) ! return OK \ No newline at end of file |
|
From: <ri...@us...> - 2003-09-28 19:07:20
|
Update of /cvsroot/wpdev/xmlscripts/definitions/npcs/humans In directory sc8-pr-cvs1:/tmp/cvs-serv6814/definitions/npcs/humans Modified Files: civilists.xml Log Message: no message Index: civilists.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/npcs/humans/civilists.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** civilists.xml 27 Sep 2003 22:24:31 -0000 1.6 --- civilists.xml 28 Sep 2003 19:07:06 -0000 1.7 *************** *** 57,64 **** --- 57,66 ---- <npc id="pirate_male"> <inherit>base_male</inherit> + <karma>500</karma> <title>the Pirate</title> </npc> <npc id="pirate_female"> <inherit>base_female</inherit> + <karma>500</karma> <title>the Pirate</title> </npc> |
Update of /cvsroot/wpdev/xmlscripts/definitions/items/buildings
In directory sc8-pr-cvs1:/tmp/cvs-serv8058
Modified Files:
banisters.xml banners.xml carpets.xml chairs.xml curtains.xml
doors.xml dungeon.xml fences.xml fireplaces.xml floors.xml
furniture.xml lightsources.xml misc.xml roofs.xml shrines.xml
stairs.xml walls.xml weapons.xml
Log Message:
When building things, it would be best this stuff does not decay...\nSo I added nodecay to the items in here. This prevents a nicely built house from falling down on you.
Index: banisters.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/banisters.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** banisters.xml 23 Dec 2002 01:35:35 -0000 1.1
--- banisters.xml 27 Sep 2003 19:49:13 -0000 1.2
***************
*** 12,71 ****
<!-- Wooden Rail -->
<item id="87e">
! <id>0x087e</id>
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 1</category>
</item>
<item id="87f">
! <id>0x087f</id>
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 2</category>
</item>
<item id="880">
! <id>0x0880</id>
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 3</category>
</item>
<item id="881">
! <id>0x0881</id>
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 4</category>
</item>
<item id="882">
! <id>0x0882</id>
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 5</category>
</item>
<item id="883">
! <id>0x0883</id>
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 6</category>
</item>
<item id="884">
! <id>0x0884</id>
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 1</category>
</item>
<item id="885">
! <id>0x0885</id>
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 2</category>
</item>
<item id="886">
! <id>0x0886</id>
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 3</category>
</item>
<item id="887">
! <id>0x0887</id>
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 4</category>
</item>
<item id="888">
! <id>0x0888</id>
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 5</category>
</item>
<item id="889">
! <id>0x0889</id>
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 6</category>
</item>
--- 12,71 ----
<!-- Wooden Rail -->
<item id="87e">
! <id>0x087e</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 1</category>
</item>
<item id="87f">
! <id>0x087f</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 2</category>
</item>
<item id="880">
! <id>0x0880</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 3</category>
</item>
<item id="881">
! <id>0x0881</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 4</category>
</item>
<item id="882">
! <id>0x0882</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 5</category>
</item>
<item id="883">
! <id>0x0883</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (W/E) 6</category>
</item>
<item id="884">
! <id>0x0884</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 1</category>
</item>
<item id="885">
! <id>0x0885</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 2</category>
</item>
<item id="886">
! <id>0x0886</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 3</category>
</item>
<item id="887">
! <id>0x0887</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 4</category>
</item>
<item id="888">
! <id>0x0888</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 5</category>
</item>
<item id="889">
! <id>0x0889</id> <nodecay />
<category>Buildings\Banisters\Wooden Rail\Rail (N/S) 6</category>
</item>
***************
*** 73,217 ****
<!-- Wooden Banister -->
<item id="8ae">
! <id>0x08ae</id>
<category>Buildings\Banisters\Wooden Banister\Banister 1</category>
</item>
<item id="8af">
! <id>0x08af</id>
<category>Buildings\Banisters\Wooden Banister\Banister 2</category>
</item>
<item id="8b0">
! <id>0x08b0</id>
<category>Buildings\Banisters\Wooden Banister\Banister 3</category>
</item>
<item id="8b1">
! <id>0x08b1</id>
<category>Buildings\Banisters\Wooden Banister\Banister 4</category>
</item>
<item id="8b2">
! <id>0x08b2</id>
<category>Buildings\Banisters\Wooden Banister\Banister 5</category>
</item>
<item id="8b3">
! <id>0x08b3</id>
<category>Buildings\Banisters\Wooden Banister\Banister 6</category>
</item>
<item id="8b4">
! <id>0x08b4</id>
<category>Buildings\Banisters\Wooden Banister\Banister 7</category>
</item>
<item id="8b5">
! <id>0x08b5</id>
<category>Buildings\Banisters\Wooden Banister\Banister 8</category>
</item>
<item id="8b6">
! <id>0x08b6</id>
<category>Buildings\Banisters\Wooden Banister\Banister 9</category>
</item>
<item id="8b7">
! <id>0x08b7</id>
<category>Buildings\Banisters\Wooden Banister\Banister 10</category>
</item>
<item id="8b8">
! <id>0x08b8</id>
<category>Buildings\Banisters\Wooden Banister\Banister 11</category>
</item>
<item id="8b9">
! <id>0x08b9</id>
<category>Buildings\Banisters\Wooden Banister\Banister 12</category>
</item>
<item id="8ba">
! <id>0x08ba</id>
<category>Buildings\Banisters\Wooden Banister\Banister 13</category>
</item>
<item id="8bb">
! <id>0x08bb</id>
<category>Buildings\Banisters\Wooden Banister\Banister 14</category>
</item>
<item id="8bc">
! <id>0x08bc</id>
<category>Buildings\Banisters\Wooden Banister\Banister 15</category>
</item>
<item id="8bd">
! <id>0x08bd</id>
<category>Buildings\Banisters\Wooden Banister\Banister 16</category>
</item>
<item id="8be">
! <id>0x08be</id>
<category>Buildings\Banisters\Wooden Banister\Banister 17</category>
</item>
<item id="8bf">
! <id>0x08bf</id>
<category>Buildings\Banisters\Wooden Banister\Banister 18</category>
</item>
<item id="8c0">
! <id>0x08c0</id>
<category>Buildings\Banisters\Wooden Banister\Banister 19</category>
</item>
<item id="8c1">
! <id>0x08c1</id>
<category>Buildings\Banisters\Wooden Banister\Banister 20</category>
</item>
<item id="8c2">
! <id>0x08c2</id>
<category>Buildings\Banisters\Wooden Banister\Banister 21</category>
</item>
<item id="8c3">
! <id>0x08c3</id>
<category>Buildings\Banisters\Wooden Banister\Banister 22</category>
</item>
<item id="8c4">
! <id>0x08c4</id>
<category>Buildings\Banisters\Wooden Banister\Banister 23</category>
</item>
<item id="8c5">
! <id>0x08c5</id>
<category>Buildings\Banisters\Wooden Banister\Banister 24</category>
</item>
<item id="8c6">
! <id>0x08c6</id>
<category>Buildings\Banisters\Wooden Banister\Banister 25</category>
</item>
<item id="8c7">
! <id>0x08c7</id>
<category>Buildings\Banisters\Wooden Banister\Banister 26</category>
</item>
<item id="8c8">
! <id>0x08c8</id>
<category>Buildings\Banisters\Wooden Banister\Banister 27</category>
</item>
<item id="8c9">
! <id>0x08c9</id>
<category>Buildings\Banisters\Wooden Banister\Banister 28</category>
</item>
<item id="8ca">
! <id>0x08ca</id>
<category>Buildings\Banisters\Wooden Banister\Banister 29</category>
</item>
--- 73,217 ----
<!-- Wooden Banister -->
<item id="8ae">
! <id>0x08ae</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 1</category>
</item>
<item id="8af">
! <id>0x08af</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 2</category>
</item>
<item id="8b0">
! <id>0x08b0</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 3</category>
</item>
<item id="8b1">
! <id>0x08b1</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 4</category>
</item>
<item id="8b2">
! <id>0x08b2</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 5</category>
</item>
<item id="8b3">
! <id>0x08b3</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 6</category>
</item>
<item id="8b4">
! <id>0x08b4</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 7</category>
</item>
<item id="8b5">
! <id>0x08b5</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 8</category>
</item>
<item id="8b6">
! <id>0x08b6</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 9</category>
</item>
<item id="8b7">
! <id>0x08b7</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 10</category>
</item>
<item id="8b8">
! <id>0x08b8</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 11</category>
</item>
<item id="8b9">
! <id>0x08b9</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 12</category>
</item>
<item id="8ba">
! <id>0x08ba</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 13</category>
</item>
<item id="8bb">
! <id>0x08bb</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 14</category>
</item>
<item id="8bc">
! <id>0x08bc</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 15</category>
</item>
<item id="8bd">
! <id>0x08bd</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 16</category>
</item>
<item id="8be">
! <id>0x08be</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 17</category>
</item>
<item id="8bf">
! <id>0x08bf</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 18</category>
</item>
<item id="8c0">
! <id>0x08c0</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 19</category>
</item>
<item id="8c1">
! <id>0x08c1</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 20</category>
</item>
<item id="8c2">
! <id>0x08c2</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 21</category>
</item>
<item id="8c3">
! <id>0x08c3</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 22</category>
</item>
<item id="8c4">
! <id>0x08c4</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 23</category>
</item>
<item id="8c5">
! <id>0x08c5</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 24</category>
</item>
<item id="8c6">
! <id>0x08c6</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 25</category>
</item>
<item id="8c7">
! <id>0x08c7</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 26</category>
</item>
<item id="8c8">
! <id>0x08c8</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 27</category>
</item>
<item id="8c9">
! <id>0x08c9</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 28</category>
</item>
<item id="8ca">
! <id>0x08ca</id> <nodecay />
<category>Buildings\Banisters\Wooden Banister\Banister 29</category>
</item>
***************
*** 219,240 ****
<!-- Edging -->
<item id="8cb">
! <id>0x08cb</id>
<category>Buildings\Banisters\Edging\Edging 1</category>
</item>
<item id="8cc">
! <id>0x08cc</id>
<category>Buildings\Banisters\Edging\Edging 2</category>
</item>
<item id="8cd">
! <id>0x08cd</id>
<category>Buildings\Banisters\Edging\Edging 3</category>
</item>
<item id="8ce">
! <id>0x08ce</id>
<category>Buildings\Banisters\Edging\Edging 4</category>
</item>
! </definitions>
\ No newline at end of file
--- 219,240 ----
<!-- Edging -->
<item id="8cb">
! <id>0x08cb</id> <nodecay />
<category>Buildings\Banisters\Edging\Edging 1</category>
</item>
<item id="8cc">
! <id>0x08cc</id> <nodecay />
<category>Buildings\Banisters\Edging\Edging 2</category>
</item>
<item id="8cd">
! <id>0x08cd</id> <nodecay />
<category>Buildings\Banisters\Edging\Edging 3</category>
</item>
<item id="8ce">
! <id>0x08ce</id> <nodecay />
<category>Buildings\Banisters\Edging\Edging 4</category>
</item>
! </definitions>
Index: banners.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/banners.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** banners.xml 25 Dec 2002 00:35:23 -0000 1.2
--- banners.xml 27 Sep 2003 19:49:13 -0000 1.3
***************
*** 12,731 ****
<!-- Banners -->
<item id="1586">
! <id>0x1586</id>
<category>Decoration\Banners\Banner 1 (W/E) 1</category>
</item>
<item id="1587">
! <id>0x1587</id>
<category>Decoration\Banners\Banner 1 (W/E) 2</category>
</item>
[...1437 lines suppressed...]
</item>
<item id="1626">
! <id>0x1626</id>
<category>Decoration\Banners\Banner Hanger (N/S)</category>
</item>
! </definitions>
\ No newline at end of file
--- 733,743 ----
<!-- Banner Hanger -->
<item id="158f">
! <id>0x158f</id> <nodecay />
<category>Decoration\Banners\Banner Hanger (W/E)</category>
</item>
<item id="1626">
! <id>0x1626</id> <nodecay />
<category>Decoration\Banners\Banner Hanger (N/S)</category>
</item>
! </definitions>
Index: carpets.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/carpets.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** carpets.xml 20 Sep 2003 01:07:50 -0000 1.3
--- carpets.xml 27 Sep 2003 19:49:13 -0000 1.4
***************
*** 10,129 ****
<!-- Rug - Brown -->
<item id="aa9">
! <id>0x0aa9</id>
<category>Decoration\Carpets\Rug - Brown\Rug 1</category>
</item>
<item id="aaa">
! <id>0x0aaa</id>
<category>Decoration\Carpets\Rug - Brown\Rug 2</category>
</item>
[...1729 lines suppressed...]
! <id>0x1df9</id> <nodecay />
<category>Decoration\Carpets\Rug - Gray\Rug 11</category>
</item>
<item id="1dfa">
! <id>0x1dfa</id> <nodecay />
<category>Decoration\Carpets\Rug - Gray\Rug 12</category>
</item>
<item id="1dfb">
! <id>0x1dfb</id> <nodecay />
<category>Decoration\Carpets\Rug - Gray\Rug 13</category>
</item>
<item id="1dfc">
! <id>0x1dfc</id> <nodecay />
<category>Decoration\Carpets\Rug - Gray\Rug 14</category>
</item>
! </definitions>
Index: chairs.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/chairs.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** chairs.xml 25 Dec 2002 23:40:41 -0000 1.7
--- chairs.xml 27 Sep 2003 19:49:13 -0000 1.8
***************
*** 12,21 ****
<!-- Marble Bench -->
<item id="459">
! <id>0x0459</id>
<category>Decoration\Chairs\Marble Bench 1 (N/S)</category>
</item>
<item id="45a">
! <id>0x045a</id>
<category>Decoration\Chairs\Marble Bench 1 (W/E)</category>
</item>
--- 12,21 ----
<!-- Marble Bench -->
<item id="459">
! <id>0x0459</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 1 (N/S)</category>
</item>
<item id="45a">
! <id>0x045a</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 1 (W/E)</category>
</item>
***************
*** 23,32 ****
<!-- Sandstone Bench -->
<item id="45b">
! <id>0x045b</id>
<category>Decoration\Chairs\Sandstone Bench 1 (N/S)</category>
</item>
<item id="45c">
! <id>0x045c</id>
<category>Decoration\Chairs\Sandstone Bench 1 (W/E)</category>
</item>
--- 23,32 ----
<!-- Sandstone Bench -->
<item id="45b">
! <id>0x045b</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 1 (N/S)</category>
</item>
<item id="45c">
! <id>0x045c</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 1 (W/E)</category>
</item>
***************
*** 34,43 ****
<!-- Stool -->
<item id="a2a">
! <id>0x0a2a</id>
<category>Decoration\Chairs\Stool 1</category>
</item>
<item id="a2b">
! <id>0x0a2b</id>
<category>Decoration\Chairs\Stool 2</category>
</item>
--- 34,43 ----
<!-- Stool -->
<item id="a2a">
! <id>0x0a2a</id> <nodecay />
<category>Decoration\Chairs\Stool 1</category>
</item>
<item id="a2b">
! <id>0x0a2b</id> <nodecay />
<category>Decoration\Chairs\Stool 2</category>
</item>
***************
*** 45,54 ****
<!-- Wooden Bench -->
<item id="b2c">
! <id>0x0b2c</id>
<category>Decoration\Chairs\Wooden Bench 1 (W/E)</category>
</item>
<item id="b2d">
! <id>0x0b2d</id>
<category>Decoration\Chairs\Wooden Bench 1 (N/S)</category>
</item>
--- 45,54 ----
<!-- Wooden Bench -->
<item id="b2c">
! <id>0x0b2c</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 1 (W/E)</category>
</item>
<item id="b2d">
! <id>0x0b2d</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 1 (N/S)</category>
</item>
***************
*** 56,75 ****
<!-- Wooden Chair -->
<item id="b2e">
! <id>0x0b2e</id>
<category>Decoration\Chairs\Wooden Chair 1</category>
</item>
<item id="b2f">
! <id>0x0b2f</id>
<category>Decoration\Chairs\Wooden Chair 2</category>
</item>
<item id="b30">
! <id>0x0b30</id>
<category>Decoration\Chairs\Wooden Chair 3</category>
</item>
<item id="b31">
! <id>0x0b31</id>
<category>Decoration\Chairs\Wooden Chair 4</category>
</item>
--- 56,75 ----
<!-- Wooden Chair -->
<item id="b2e">
! <id>0x0b2e</id> <nodecay />
<category>Decoration\Chairs\Wooden Chair 1</category>
</item>
<item id="b2f">
! <id>0x0b2f</id> <nodecay />
<category>Decoration\Chairs\Wooden Chair 2</category>
</item>
<item id="b30">
! <id>0x0b30</id> <nodecay />
<category>Decoration\Chairs\Wooden Chair 3</category>
</item>
<item id="b31">
! <id>0x0b31</id> <nodecay />
<category>Decoration\Chairs\Wooden Chair 4</category>
</item>
***************
*** 77,86 ****
<!-- Throne -->
<item id="b32">
! <id>0x0b32</id>
<category>Decoration\Chairs\Wooden Throne 1</category>
</item>
<item id="b33">
! <id>0x0b33</id>
<category>Decoration\Chairs\Wooden Throne 2</category>
</item>
--- 77,86 ----
<!-- Throne -->
<item id="b32">
! <id>0x0b32</id> <nodecay />
<category>Decoration\Chairs\Wooden Throne 1</category>
</item>
<item id="b33">
! <id>0x0b33</id> <nodecay />
<category>Decoration\Chairs\Wooden Throne 2</category>
</item>
***************
*** 88,232 ****
<!-- Wooden Chairs -->
<item id="b4e">
! <id>0x0b4e</id>
<category>Decoration\Chairs\Fancy Wooden Chair 1</category>
</item>
<item id="b4f">
! <id>0x0b4f</id>
<category>Decoration\Chairs\Fancy Wooden Chair 2</category>
</item>
<item id="b50">
! <id>0x0b50</id>
<category>Decoration\Chairs\Fancy Wooden Chair 3</category>
</item>
<item id="b51">
! <id>0x0b51</id>
<category>Decoration\Chairs\Fancy Wooden Chair 4</category>
</item>
<item id="b52">
! <id>0x0b52</id>
<category>Decoration\Chairs\Simple Wooden Chair 1</category>
</item>
<item id="b53">
! <id>0x0b53</id>
<category>Decoration\Chairs\Simple Wooden Chair 2</category>
</item>
<item id="b54">
! <id>0x0b54</id>
<category>Decoration\Chairs\Simple Wooden Chair 3</category>
</item>
<item id="b55">
! <id>0x0b55</id>
<category>Decoration\Chairs\Simple Wooden Chair 4</category>
</item>
<item id="b56">
! <id>0x0b56</id>
<category>Decoration\Chairs\Plain Wooden Chair 1</category>
</item>
<item id="b57">
! <id>0x0b57</id>
<category>Decoration\Chairs\Plain Wooden Chair 2</category>
</item>
<item id="b58">
! <id>0x0b58</id>
<category>Decoration\Chairs\Plain Wooden Chair 3</category>
</item>
<item id="b59">
! <id>0x0b59</id>
<category>Decoration\Chairs\Plain Wooden Chair 4</category>
</item>
<item id="b5a">
! <id>0x0b5a</id>
<category>Decoration\Chairs\Rustic Wooden Chair 1</category>
</item>
<item id="b5b">
! <id>0x0b5b</id>
<category>Decoration\Chairs\Rustic Wooden Chair 2</category>
</item>
<item id="b5c">
! <id>0x0b5c</id>
<category>Decoration\Chairs\Rustic Wooden Chair 3</category>
</item>
<item id="b5d">
! <id>0x0b5d</id>
<category>Decoration\Chairs\Rustic Wooden Chair 4</category>
</item>
<item id="b5e">
! <id>0x0b5e</id>
<category>Decoration\Chairs\Foot Stool</category>
</item>
<item id="b5f">
! <id>0x0b5f</id>
<category>Decoration\Chairs\Wooden Bench 2 (W/E) (1/3)</category>
</item>
<item id="b60">
! <id>0x0b60</id>
<category>Decoration\Chairs\Wooden Bench 2 (W/E) (2/3)</category>
</item>
<item id="b61">
! <id>0x0b61</id>
<category>Decoration\Chairs\Wooden Bench 2 (W/E) (3/3)</category>
</item>
<item id="b62">
! <id>0x0b62</id>
<category>Decoration\Chairs\Sandstone Bench 2 (W/E) (1/3)</category>
</item>
<item id="b63">
! <id>0x0b63</id>
<category>Decoration\Chairs\Sandstone Bench 2 (W/E) (2/3)</category>
</item>
<item id="b64">
! <id>0x0b64</id>
<category>Decoration\Chairs\Sandstone Bench 2 (W/E) (3/3)</category>
</item>
<item id="b65">
! <id>0x0b65</id>
<category>Decoration\Chairs\Wooden Bench 2 (N/S) (1/3)</category>
</item>
<item id="b66">
! <id>0x0b66</id>
<category>Decoration\Chairs\Wooden Bench 2 (N/S) (2/3)</category>
</item>
<item id="b67">
! <id>0x0b67</id>
<category>Decoration\Chairs\Wooden Bench 2 (N/S) (3/3)</category>
</item>
<item id="b68">
! <id>0x0b68</id>
<category>Decoration\Chairs\Sandstone Bench 2 (N/S) (1/3)</category>
</item>
<item id="b69">
! <id>0x0b69</id>
<category>Decoration\Chairs\Sandstone Bench 2 (N/S) (2/3)</category>
</item>
<item id="b6a">
! <id>0x0b6a</id>
<category>Decoration\Chairs\Sandstone Bench 2 (N/S) (3/3)</category>
</item>
--- 88,232 ----
<!-- Wooden Chairs -->
<item id="b4e">
! <id>0x0b4e</id> <nodecay />
<category>Decoration\Chairs\Fancy Wooden Chair 1</category>
</item>
<item id="b4f">
! <id>0x0b4f</id> <nodecay />
<category>Decoration\Chairs\Fancy Wooden Chair 2</category>
</item>
<item id="b50">
! <id>0x0b50</id> <nodecay />
<category>Decoration\Chairs\Fancy Wooden Chair 3</category>
</item>
<item id="b51">
! <id>0x0b51</id> <nodecay />
<category>Decoration\Chairs\Fancy Wooden Chair 4</category>
</item>
<item id="b52">
! <id>0x0b52</id> <nodecay />
<category>Decoration\Chairs\Simple Wooden Chair 1</category>
</item>
<item id="b53">
! <id>0x0b53</id> <nodecay />
<category>Decoration\Chairs\Simple Wooden Chair 2</category>
</item>
<item id="b54">
! <id>0x0b54</id> <nodecay />
<category>Decoration\Chairs\Simple Wooden Chair 3</category>
</item>
<item id="b55">
! <id>0x0b55</id> <nodecay />
<category>Decoration\Chairs\Simple Wooden Chair 4</category>
</item>
<item id="b56">
! <id>0x0b56</id> <nodecay />
<category>Decoration\Chairs\Plain Wooden Chair 1</category>
</item>
<item id="b57">
! <id>0x0b57</id> <nodecay />
<category>Decoration\Chairs\Plain Wooden Chair 2</category>
</item>
<item id="b58">
! <id>0x0b58</id> <nodecay />
<category>Decoration\Chairs\Plain Wooden Chair 3</category>
</item>
<item id="b59">
! <id>0x0b59</id> <nodecay />
<category>Decoration\Chairs\Plain Wooden Chair 4</category>
</item>
<item id="b5a">
! <id>0x0b5a</id> <nodecay />
<category>Decoration\Chairs\Rustic Wooden Chair 1</category>
</item>
<item id="b5b">
! <id>0x0b5b</id> <nodecay />
<category>Decoration\Chairs\Rustic Wooden Chair 2</category>
</item>
<item id="b5c">
! <id>0x0b5c</id> <nodecay />
<category>Decoration\Chairs\Rustic Wooden Chair 3</category>
</item>
<item id="b5d">
! <id>0x0b5d</id> <nodecay />
<category>Decoration\Chairs\Rustic Wooden Chair 4</category>
</item>
<item id="b5e">
! <id>0x0b5e</id> <nodecay />
<category>Decoration\Chairs\Foot Stool</category>
</item>
<item id="b5f">
! <id>0x0b5f</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 2 (W/E) (1/3)</category>
</item>
<item id="b60">
! <id>0x0b60</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 2 (W/E) (2/3)</category>
</item>
<item id="b61">
! <id>0x0b61</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 2 (W/E) (3/3)</category>
</item>
<item id="b62">
! <id>0x0b62</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 2 (W/E) (1/3)</category>
</item>
<item id="b63">
! <id>0x0b63</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 2 (W/E) (2/3)</category>
</item>
<item id="b64">
! <id>0x0b64</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 2 (W/E) (3/3)</category>
</item>
<item id="b65">
! <id>0x0b65</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 2 (N/S) (1/3)</category>
</item>
<item id="b66">
! <id>0x0b66</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 2 (N/S) (2/3)</category>
</item>
<item id="b67">
! <id>0x0b67</id> <nodecay />
<category>Decoration\Chairs\Wooden Bench 2 (N/S) (3/3)</category>
</item>
<item id="b68">
! <id>0x0b68</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 2 (N/S) (1/3)</category>
</item>
<item id="b69">
! <id>0x0b69</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 2 (N/S) (2/3)</category>
</item>
<item id="b6a">
! <id>0x0b6a</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 2 (N/S) (3/3)</category>
</item>
***************
*** 234,253 ****
<!-- Wall Bench -->
<item id="b91">
! <id>0x0b91</id>
<category>Decoration\Chairs\Bench (N/S) (1/2)</category>
</item>
<item id="b92">
! <id>0x0b92</id>
<category>Decoration\Chairs\Bench (N/S) (2/2)</category>
</item>
<item id="b93">
! <id>0x0b93</id>
<category>Decoration\Chairs\Bench (W/E) (1/2)</category>
</item>
<item id="b94">
! <id>0x0b94</id>
<category>Decoration\Chairs\Bench (N/S) (2/2)</category>
</item>
--- 234,253 ----
<!-- Wall Bench -->
<item id="b91">
! <id>0x0b91</id> <nodecay />
<category>Decoration\Chairs\Bench (N/S) (1/2)</category>
</item>
<item id="b92">
! <id>0x0b92</id> <nodecay />
<category>Decoration\Chairs\Bench (N/S) (2/2)</category>
</item>
<item id="b93">
! <id>0x0b93</id> <nodecay />
<category>Decoration\Chairs\Bench (W/E) (1/2)</category>
</item>
<item id="b94">
! <id>0x0b94</id> <nodecay />
<category>Decoration\Chairs\Bench (N/S) (2/2)</category>
</item>
***************
*** 255,264 ****
<!-- Loom Bench -->
<item id="1049">
! <id>0x1049</id>
<category>Decoration\Chairs\Loom Bench (W/E)</category>
</item>
<item id="104a">
! <id>0x104a</id>
<category>Decoration\Chairs\Loom Bench (N/S)</category>
</item>
--- 255,264 ----
<!-- Loom Bench -->
<item id="1049">
! <id>0x1049</id> <nodecay />
<category>Decoration\Chairs\Loom Bench (W/E)</category>
</item>
<item id="104a">
! <id>0x104a</id> <nodecay />
<category>Decoration\Chairs\Loom Bench (N/S)</category>
</item>
***************
*** 266,270 ****
<!-- Bamboo Stool -->
<item id="11fc">
! <id>0x11fc</id>
<category>Decoration\Chairs\Bamboo Stool</category>
</item>
--- 266,270 ----
<!-- Bamboo Stool -->
<item id="11fc">
! <id>0x11fc</id> <nodecay />
<category>Decoration\Chairs\Bamboo Stool</category>
</item>
***************
*** 272,286 ****
<!-- Stone Bench -->
<item id="1207">
! <id>0x1207</id>
<category>Decoration\Chairs\Stone Bench 1 (W/E) (1/3)</category>
</item>
<item id="1208">
! <id>0x1208</id>
<category>Decoration\Chairs\Stone Bench 1 (W/E) (2/3)</category>
</item>
<item id="1209">
! <id>0x1209</id>
<category>Decoration\Chairs\Stone Bench 1 (W/E) (3/3)</category>
</item>
--- 272,286 ----
<!-- Stone Bench -->
<item id="1207">
! <id>0x1207</id> <nodecay />
<category>Decoration\Chairs\Stone Bench 1 (W/E) (1/3)</category>
</item>
<item id="1208">
! <id>0x1208</id> <nodecay />
<category>Decoration\Chairs\Stone Bench 1 (W/E) (2/3)</category>
</item>
<item id="1209">
! <id>0x1209</id> <nodecay />
<category>Decoration\Chairs\Stone Bench 1 (W/E) (3/3)</category>
</item>
***************
*** 288,377 ****
<!-- Stone Throne -->
<item id="1218">
! <id>0x1218</id>
<category>Decoration\Chairs\Stone Throne 1</category>
</item>
<item id="1219">
! <id>0x1219</id>
<category>Decoration\Chairs\Stone Throne 2</category>
</item>
<item id="121a">
! <id>0x121a</id>
<category>Decoration\Chairs\Stone Throne 3</category>
</item>
<item id="121b">
! <id>0x121b</id>
<category>Decoration\Chairs\Stone Throne 4</category>
</item>
<item id="1526">
! <id>0x1526</id>
<category>Decoration\Chairs\Lord British Throne (1/2)</category>
</item>
<item id="1527">
! <id>0x1527</id>
<category>Decoration\Chairs\Lord British Throne (2/2)</category>
</item>
<item id="1dc7">
! <id>0x1dc7</id>
<category>Decoration\Chairs\Sandstone Bench 3 (N/S) (1/3)</category>
</item>
<item id="1dc8">
! <id>0x1dc8</id>
<category>Decoration\Chairs\Sandstone Bench 3 (N/S) (3/3)</category>
</item>
<item id="1dc9">
! <id>0x1dc9</id>
<category>Decoration\Chairs\Sandstone Bench 3 (N/S) (2/3)</category>
</item>
<item id="1dca">
! <id>0x1dca</id>
<category>Decoration\Chairs\Sandstone Bench 3 (W/E) (1/3)</category>
</item>
<item id="1dcb">
! <id>0x1dcb</id>
<category>Decoration\Chairs\Sandstone Bench 3 (W/E) (3/3)</category>
</item>
<item id="1dcc">
! <id>0x1dcc</id>
<category>Decoration\Chairs\Sandstone Bench 3 (W/E) (2/3)</category>
</item>
<item id="1dcd">
! <id>0x1dcd</id>
<category>Decoration\Chairs\Marble Bench 2 (N/S) (1/3)</category>
</item>
<item id="1dce">
! <id>0x1dce</id>
<category>Decoration\Chairs\Marble Bench 2 (N/S) (3/3)</category>
</item>
<item id="1dcf">
! <id>0x1dcf</id>
<category>Decoration\Chairs\Marble Bench 2 (N/S) (2/3)</category>
</item>
<item id="1dd0">
! <id>0x1dd0</id>
<category>Decoration\Chairs\Marble Bench 2 (W/E) (1/3)</category>
</item>
<item id="1dd1">
! <id>0x1dd1</id>
<category>Decoration\Chairs\Marble Bench 2 (W/E) (3/3)</category>
</item>
<item id="1dd2">
! <id>0x1dd2</id>
<category>Decoration\Chairs\Marble Bench 2 (W/E) (2/3)</category>
</item>
--- 288,377 ----
<!-- Stone Throne -->
<item id="1218">
! <id>0x1218</id> <nodecay />
<category>Decoration\Chairs\Stone Throne 1</category>
</item>
<item id="1219">
! <id>0x1219</id> <nodecay />
<category>Decoration\Chairs\Stone Throne 2</category>
</item>
<item id="121a">
! <id>0x121a</id> <nodecay />
<category>Decoration\Chairs\Stone Throne 3</category>
</item>
<item id="121b">
! <id>0x121b</id> <nodecay />
<category>Decoration\Chairs\Stone Throne 4</category>
</item>
<item id="1526">
! <id>0x1526</id> <nodecay />
<category>Decoration\Chairs\Lord British Throne (1/2)</category>
</item>
<item id="1527">
! <id>0x1527</id> <nodecay />
<category>Decoration\Chairs\Lord British Throne (2/2)</category>
</item>
<item id="1dc7">
! <id>0x1dc7</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 3 (N/S) (1/3)</category>
</item>
<item id="1dc8">
! <id>0x1dc8</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 3 (N/S) (3/3)</category>
</item>
<item id="1dc9">
! <id>0x1dc9</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 3 (N/S) (2/3)</category>
</item>
<item id="1dca">
! <id>0x1dca</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 3 (W/E) (1/3)</category>
</item>
<item id="1dcb">
! <id>0x1dcb</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 3 (W/E) (3/3)</category>
</item>
<item id="1dcc">
! <id>0x1dcc</id> <nodecay />
<category>Decoration\Chairs\Sandstone Bench 3 (W/E) (2/3)</category>
</item>
<item id="1dcd">
! <id>0x1dcd</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 2 (N/S) (1/3)</category>
</item>
<item id="1dce">
! <id>0x1dce</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 2 (N/S) (3/3)</category>
</item>
<item id="1dcf">
! <id>0x1dcf</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 2 (N/S) (2/3)</category>
</item>
<item id="1dd0">
! <id>0x1dd0</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 2 (W/E) (1/3)</category>
</item>
<item id="1dd1">
! <id>0x1dd1</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 2 (W/E) (3/3)</category>
</item>
<item id="1dd2">
! <id>0x1dd2</id> <nodecay />
<category>Decoration\Chairs\Marble Bench 2 (W/E) (2/3)</category>
</item>
***************
*** 379,389 ****
<!-- Stone Bench 2 -->
<item id="3dff">
! <id>0x3dff</id>
<category>Decoration\Chairs\Stone Bench 2 (N/S)</category>
</item>
<item id="3e00">
! <id>0x3e00</id>
<category>Decoration\Chairs\Stone Bench 2 (W/E)</category>
</item>
! </definitions>
\ No newline at end of file
--- 379,389 ----
<!-- Stone Bench 2 -->
<item id="3dff">
! <id>0x3dff</id> <nodecay />
<category>Decoration\Chairs\Stone Bench 2 (N/S)</category>
</item>
<item id="3e00">
! <id>0x3e00</id> <nodecay />
<category>Decoration\Chairs\Stone Bench 2 (W/E)</category>
</item>
! </definitions>
Index: curtains.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/curtains.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** curtains.xml 25 Dec 2002 23:40:41 -0000 1.4
--- curtains.xml 27 Sep 2003 19:49:13 -0000 1.5
***************
*** 12,246 ****
<!-- Red Curtains -->
<item id="980">
! <id>0x0980</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 1</categories>
</item>
<item id="981">
! <id>0x0981</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 2</categories>
</item>
<item id="982">
! <id>0x0982</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 3</categories>
</item>
<item id="983">
! <id>0x0983</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 4</categories>
</item>
<item id="984">
! <id>0x0984</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 5</categories>
</item>
<item id="985">
! <id>0x0985</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 6</categories>
</item>
<item id="986">
! <id>0x0986</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 7</categories>
</item>
<item id="987">
! <id>0x0987</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 8</categories>
</item>
<item id="988">
! <id>0x0988</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 9</categories>
</item>
<item id="989">
! <id>0x0989</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 10</categories>
</item>
<item id="98a">
! <id>0x098a</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 11</categories>
</item>
<item id="98b">
! <id>0x098b</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 12</categories>
</item>
<item id="160d">
! <id>0x160d</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 13</categories>
</item>
<item id="160e">
! <id>0x160e</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 14</categories>
</item>
<item id="3ed8">
! <id>0x3ed8</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 15</categories>
</item>
<item id="3ed9">
! <id>0x3ed9</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 16</categories>
</item>
<item id="3eda">
! <id>0x3eda</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 17</categories>
</item>
<item id="3edb">
! <id>0x3edb</id>
<categories>Decoration\Curtains\Red Curtain\Red Curtain 18</categories>
</item>
<item id="12da">
! <id>0x12da</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 1</categories>
</item>
<item id="12db">
! <id>0x12db</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 2</categories>
</item>
<item id="12dc">
! <id>0x12dc</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 3</categories>
</item>
<item id="12dd">
! <id>0x12dd</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 4</categories>
</item>
<item id="12de">
! <id>0x12de</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 5</categories>
</item>
<item id="12df">
! <id>0x12df</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 6</categories>
</item>
<item id="12e0">
! <id>0x12e0</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 7</categories>
</item>
<item id="12e1">
! <id>0x12e1</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 8</categories>
</item>
<item id="12e2">
! <id>0x12e2</id>
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (W/E) 1</categories>
</item>
<item id="12e3">
! <id>0x12e3</id>
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (W/E) 2</categories>
</item>
<item id="12e4">
! <id>0x12e4</id>
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (W/E) 3</categories>
</item>
<item id="12e5">
! <id>0x12e5</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 1</categories>
</item>
<item id="12e6">
! <id>0x12e6</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 2</categories>
</item>
<item id="12e7">
! <id>0x12e7</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 3</categories>
</item>
<item id="12e8">
! <id>0x12e8</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 4</categories>
</item>
<item id="12e9">
! <id>0x12e9</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 5</categories>
</item>
<item id="12ea">
! <id>0x12ea</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 6</categories>
</item>
<item id="12eb">
! <id>0x12eb</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 7</categories>
</item>
<item id="12ec">
! <id>0x12ec</id>
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 8</categories>
</item>
<item id="12ed">
! <id>0x12ed</id>
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (N/S)</categories>
</item>
<item id="154e">
! <id>0x154e</id>
<categories>Decoration\Curtains\Standing Red Curtain\Red Curtain (1/3)</categories>
</item>
<item id="154f">
! <id>0x154f</id>
<categories>Decoration\Curtains\Standing Red Curtain\Red Curtain (3/3)</categories>
</item>
<item id="1557">
! <id>0x1557</id>
<categories>Decoration\Curtains\Standing Red Curtain\Red Curtain (2/3)</categories>
</item>
<item id="159e">
! <id>0x159e</id>
<categories>Decoration\Curtains\Small White Curtains\White Curtain 1 (W/E)</categories>
</item>
<item id="159f">
! <id>0x159f</id>
<categories>Decoration\Curtains\Small White Curtains\White Curtain 1 (N/S)</categories>
</item>
<item id="15f6">
! <id>0x15f6</id>
<categories>Decoration\Curtains\Small White Curtains\White Curtain 2 (W/E)</categories>
</item>
<item id="15f7">
! <id>0x15f7</id>
<categories>Decoration\Curtains\Small White Curtains\White Curtain 2 (N/S)</categories>
</item>
<item id="1638">
! <id>0x1638</id>
<categories>Decoration\Curtains\Small Red Curtain\Red Curtain 1</categories>
</item>
<item id="1639">
! <id>0x1639</id>
<categories>Decoration\Curtains\Small Red Curtain\Red Curtain 2</categories>
</item>
--- 12,246 ----
<!-- Red Curtains -->
<item id="980">
! <id>0x0980</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 1</categories>
</item>
<item id="981">
! <id>0x0981</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 2</categories>
</item>
<item id="982">
! <id>0x0982</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 3</categories>
</item>
<item id="983">
! <id>0x0983</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 4</categories>
</item>
<item id="984">
! <id>0x0984</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 5</categories>
</item>
<item id="985">
! <id>0x0985</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 6</categories>
</item>
<item id="986">
! <id>0x0986</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 7</categories>
</item>
<item id="987">
! <id>0x0987</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 8</categories>
</item>
<item id="988">
! <id>0x0988</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 9</categories>
</item>
<item id="989">
! <id>0x0989</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 10</categories>
</item>
<item id="98a">
! <id>0x098a</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 11</categories>
</item>
<item id="98b">
! <id>0x098b</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 12</categories>
</item>
<item id="160d">
! <id>0x160d</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 13</categories>
</item>
<item id="160e">
! <id>0x160e</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 14</categories>
</item>
<item id="3ed8">
! <id>0x3ed8</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 15</categories>
</item>
<item id="3ed9">
! <id>0x3ed9</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 16</categories>
</item>
<item id="3eda">
! <id>0x3eda</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 17</categories>
</item>
<item id="3edb">
! <id>0x3edb</id> <nodecay />
<categories>Decoration\Curtains\Red Curtain\Red Curtain 18</categories>
</item>
<item id="12da">
! <id>0x12da</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 1</categories>
</item>
<item id="12db">
! <id>0x12db</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 2</categories>
</item>
<item id="12dc">
! <id>0x12dc</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 3</categories>
</item>
<item id="12dd">
! <id>0x12dd</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 4</categories>
</item>
<item id="12de">
! <id>0x12de</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 5</categories>
</item>
<item id="12df">
! <id>0x12df</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 6</categories>
</item>
<item id="12e0">
! <id>0x12e0</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 7</categories>
</item>
<item id="12e1">
! <id>0x12e1</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (W/E) 8</categories>
</item>
<item id="12e2">
! <id>0x12e2</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (W/E) 1</categories>
</item>
<item id="12e3">
! <id>0x12e3</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (W/E) 2</categories>
</item>
<item id="12e4">
! <id>0x12e4</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (W/E) 3</categories>
</item>
<item id="12e5">
! <id>0x12e5</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 1</categories>
</item>
<item id="12e6">
! <id>0x12e6</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 2</categories>
</item>
<item id="12e7">
! <id>0x12e7</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 3</categories>
</item>
<item id="12e8">
! <id>0x12e8</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 4</categories>
</item>
<item id="12e9">
! <id>0x12e9</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 5</categories>
</item>
<item id="12ea">
! <id>0x12ea</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 6</categories>
</item>
<item id="12eb">
! <id>0x12eb</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 7</categories>
</item>
<item id="12ec">
! <id>0x12ec</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain (N/S) 8</categories>
</item>
<item id="12ed">
! <id>0x12ed</id> <nodecay />
<categories>Decoration\Curtains\White Curtain\White Curtain Sash (N/S)</categories>
</item>
<item id="154e">
! <id>0x154e</id> <nodecay />
<categories>Decoration\Curtains\Standing Red Curtain\Red Curtain (1/3)</categories>
</item>
<item id="154f">
! <id>0x154f</id> <nodecay />
<categories>Decoration\Curtains\Standing Red Curtain\Red Curtain (3/3)</categories>
</item>
<item id="1557">
! <id>0x1557</id> <nodecay />
<categories>Decoration\Curtains\Standing Red Curtain\Red Curtain (2/3)</categories>
</item>
<item id="159e">
! <id>0x159e</id> <nodecay />
<categories>Decoration\Curtains\Small White Curtains\White Curtain 1 (W/E)</categories>
</item>
<item id="159f">
! <id>0x159f</id> <nodecay />
<categories>Decoration\Curtains\Small White Curtains\White Curtain 1 (N/S)</categories>
</item>
<item id="15f6">
! <id>0x15f6</id> <nodecay />
<categories>Decoration\Curtains\Small White Curtains\White Curtain 2 (W/E)</categories>
</item>
<item id="15f7">
! <id>0x15f7</id> <nodecay />
<categories>Decoration\Curtains\Small White Curtains\White Curtain 2 (N/S)</categories>
</item>
<item id="1638">
! <id>0x1638</id> <nodecay />
<categories>Decoration\Curtains\Small Red Curtain\Red Curtain 1</categories>
</item>
<item id="1639">
! <id>0x1639</id> <nodecay />
<categories>Decoration\Curtains\Small Red Curtain\Red Curtain 2</categories>
</item>
Index: doors.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/doors.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** doors.xml 23 Aug 2003 15:21:36 -0000 1.7
--- doors.xml 27 Sep 2003 19:49:13 -0000 1.8
***************
*** 12,16 ****
<!-- Metal Door 1-->
<item id="675">
! <id>0x675</id>
<events>door</events>
<category>Buildings\Doors\Metal Door 1\Metal Door (S/SW)</category>
--- 12,16 ----
<!-- Metal Door 1-->
<item id="675">
! <id>0x675</id> <nodecay />
<events>door</events>
[...1855 lines suppressed...]
<item id="35e">
! <id>0x035e</id> <nodecay />
<events>door</events>
</item>
<item id="360">
! <id>0x0360</id> <nodecay />
<events>door</events>
</item>
<item id="362">
! <id>0x0362</id> <nodecay />
<events>door</events>
</item>
<item id="364">
! <id>0x0364</id> <nodecay />
<events>door</events>
</item>
Index: dungeon.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/dungeon.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** dungeon.xml 25 Dec 2002 23:51:10 -0000 1.4
--- dungeon.xml 27 Sep 2003 19:49:13 -0000 1.5
***************
*** 12,311 ****
<!-- Bones -->
<item id="eca">
! <id>0xECA</id>
<category>Dungeon\Bones\Bones 1</category>
</item>
<item id="ecb">
! <id>0xECB</id>
<category>Dungeon\Bones\Bones 2</category>
</item>
[...7800 lines suppressed...]
<item id="feb">
! <id>0x0feb</id> <nodecay />
<category>Dungeon\Pentagram\Pentagram 6</category>
</item>
<item id="fec">
! <id>0x0fec</id> <nodecay />
<category>Dungeon\Pentagram\Pentagram 7</category>
</item>
<item id="fed">
! <id>0x0fed</id> <nodecay />
<category>Dungeon\Pentagram\Pentagram 8</category>
</item>
<item id="fee">
! <id>0x0fee</id> <nodecay />
<category>Dungeon\Pentagram\Pentagram 9</category>
</item>
! </definitions>
Index: fences.xml
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/fences.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** fences.xml 25 Dec 2002 23:40:41 -0000 1.3
--- fences.xml 27 Sep 2003 19:49:13 -0000 1.4
***************
*** 12,51 ****
<!-- Wooden Fence 1 -->
<item id="3b3">
! <id>0x03b3</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 1</category>
</item>
<item id="3b4">
! <id>0x03b4</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 2</category>
</item>
<item id="3b5">
! <id>0x03b5</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 3</category>
</item>
<item id="3b6">
! <id>0x03b6</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 4</category>
</item>
<item id="21d1">
! <id>0x21d1</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 5</category>
</item>
<item id="21d2">
! <id>0x21d2</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 6</category>
</item>
<item id="21d3">
! <id>0x21d3</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 7</category>
</item>
<item id="21d4">
! <id>0x21d4</id>
<category>Buildings\Fences\Wooden Fence 1\Fence 8</category>
</item>
--- 12,51 ----
<!-- Wooden Fence 1 -->
<item id="3b3">
! <id>0x03b3</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 1</category>
</item>
<item id="3b4">
! <id>0x03b4</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 2</category>
</item>
<item id="3b5">
! <id>0x03b5</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 3</category>
</item>
<item id="3b6">
! <id>0x03b6</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 4</category>
</item>
<item id="21d1">
! <id>0x21d1</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 5</category>
</item>
<item id="21d2">
! <id>0x21d2</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 6</category>
</item>
<item id="21d3">
! <id>0x21d3</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 7</category>
</item>
<item id="21d4">
! <id>0x21d4</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 1\Fence 8</category>
</item>
***************
*** 53,152 ****
<!-- Rails -->
<item id="7d7">
! <id>0x07d7</id>
<category>Buildings\Fences\Rail\Stone Rail 1</category>
</item>
<item id="7d8">
! <id>0x07d8</id>
<category>Buildings\Fences\Rail\Stone Rail 2</category>
</item>
<item id="8eb">
! <id>0x08eb</id>
<category>Buildings\Fences\Rail\Stone Rail 2</category>
</item>
<item id="8ec">
! <id>0x08ec</id>
<category>Buildings\Fences\Rail\Stone Rail 3</category>
</item>
<item id="8ed">
! <id>0x08ed</id>
<category>Buildings\Fences\Rail\Stone Rail 4</category>
</item>
<item id="8ee">
! <id>0x08ee</id>
<category>Buildings\Fences\Rail\Stone Rail 5</category>
</item>
<item id="8ef">
! <id>0x08ef</id>
<category>Buildings\Fences\Rail\Stone Rail 6</category>
</item>
<item id="8f0">
! <id>0x08f0</id>
<category>Buildings\Fences\Rail\Stone Rail 7</category>
</item>
<item id="8f1">
! <id>0x08f1</id>
<category>Buildings\Fences\Rail\Stone Rail 8</category>
</item>
<item id="8f2">
! <id>0x08f2</id>
<category>Buildings\Fences\Rail\Stone Rail 9</category>
</item>
<item id="8f3">
! <id>0x08f3</id>
<category>Buildings\Fences\Rail\Sandstone Rail 1</category>
</item>
<item id="8f4">
! <id>0x08f4</id>
<category>Buildings\Fences\Rail\Sandstone Rail 2</category>
</item>
<item id="8f5">
! <id>0x08f5</id>
<category>Buildings\Fences\Rail\Sandstone Rail 3</category>
</item>
<item id="8f6">
! <id>0x08f6</id>
<category>Buildings\Fences\Rail\Sandstone Rail 4</category>
</item>
<item id="8f7">
! <id>0x08f7</id>
<category>Buildings\Fences\Rail\Stone Rail 10</category>
</item>
<item id="8f8">
! <id>0x08f8</id>
<category>Buildings\Fences\Rail\Stone Rail 11</category>
</item>
<item id="8f9">
! <id>0x08f9</id>
<category>Buildings\Fences\Rail\Stone Rail 12</category>
</item>
<item id="8fa">
! <id>0x08fa</id>
<category>Buildings\Fences\Rail\Stone Rail 13</category>
</item>
<item id="8fb">
! <id>0x08fb</id>
<category>Buildings\Fences\Rail\Rail 1</category>
</item>
<item id="8fc">
! <id>0x08fc</id>
<category>Buildings\Fences\Rail\Rail 2</category>
</item>
--- 53,152 ----
<!-- Rails -->
<item id="7d7">
! <id>0x07d7</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 1</category>
</item>
<item id="7d8">
! <id>0x07d8</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 2</category>
</item>
<item id="8eb">
! <id>0x08eb</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 2</category>
</item>
<item id="8ec">
! <id>0x08ec</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 3</category>
</item>
<item id="8ed">
! <id>0x08ed</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 4</category>
</item>
<item id="8ee">
! <id>0x08ee</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 5</category>
</item>
<item id="8ef">
! <id>0x08ef</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 6</category>
</item>
<item id="8f0">
! <id>0x08f0</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 7</category>
</item>
<item id="8f1">
! <id>0x08f1</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 8</category>
</item>
<item id="8f2">
! <id>0x08f2</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 9</category>
</item>
<item id="8f3">
! <id>0x08f3</id> </nodecay>
<category>Buildings\Fences\Rail\Sandstone Rail 1</category>
</item>
<item id="8f4">
! <id>0x08f4</id> </nodecay>
<category>Buildings\Fences\Rail\Sandstone Rail 2</category>
</item>
<item id="8f5">
! <id>0x08f5</id> </nodecay>
<category>Buildings\Fences\Rail\Sandstone Rail 3</category>
</item>
<item id="8f6">
! <id>0x08f6</id> </nodecay>
<category>Buildings\Fences\Rail\Sandstone Rail 4</category>
</item>
<item id="8f7">
! <id>0x08f7</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 10</category>
</item>
<item id="8f8">
! <id>0x08f8</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 11</category>
</item>
<item id="8f9">
! <id>0x08f9</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 12</category>
</item>
<item id="8fa">
! <id>0x08fa</id> </nodecay>
<category>Buildings\Fences\Rail\Stone Rail 13</category>
</item>
<item id="8fb">
! <id>0x08fb</id> </nodecay>
<category>Buildings\Fences\Rail\Rail 1</category>
</item>
<item id="8fc">
! <id>0x08fc</id> </nodecay>
<category>Buildings\Fences\Rail\Rail 2</category>
</item>
***************
*** 154,168 ****
<!-- Iron Fence 1 -->
<item id="821">
! <id>0x0821</id>
<category>Buildings\Fences\Iron Fence 1\Fence 1</category>
</item>
<item id="822">
! <id>0x0822</id>
<category>Buildings\Fences\Iron Fence 1\Fence 2</category>
</item>
<item id="823">
! <id>0x0823</id>
<category>Buildings\Fences\Iron Fence 1\Fence 3</category>
</item>
--- 154,168 ----
<!-- Iron Fence 1 -->
<item id="821">
! <id>0x0821</id> </nodecay>
<category>Buildings\Fences\Iron Fence 1\Fence 1</category>
</item>
<item id="822">
! <id>0x0822</id> </nodecay>
<category>Buildings\Fences\Iron Fence 1\Fence 2</category>
</item>
<item id="823">
! <id>0x0823</id> </nodecay>
<category>Buildings\Fences\Iron Fence 1\Fence 3</category>
</item>
***************
*** 170,189 ****
<!-- Wooden Fence 2 -->
<item id="835">
! <id>0x0835</id>
<category>Buildings\Fences\Wooden Fence 2\Fence 1</category>
</item>
<item id="836">
! <id>0x0836</id>
<category>Buildings\Fences\Wooden Fence 2\Fence 2</category>
</item>
<item id="837">
! <id>0x0837</id>
<category>Buildings\Fences\Wooden Fence 2\Fence 3</category>
</item>
<item id="838">
! <id>0x0838</id>
<category>Buildings\Fences\Wooden Fence 2\Fence 4</category>
</item>
--- 170,189 ----
<!-- Wooden Fence 2 -->
<item id="835">
! <id>0x0835</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 2\Fence 1</category>
</item>
<item id="836">
! <id>0x0836</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 2\Fence 2</category>
</item>
<item id="837">
! <id>0x0837</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 2\Fence 3</category>
</item>
<item id="838">
! <id>0x0838</id> </nodecay>
<category>Buildings\Fences\Wooden Fence 2\Fence 4</category>
</item>
***************
*** 191,205 ****
<!-- Iron Fence 2 -->
<item id="849">
! <...
[truncated message content] |
|
From: <ri...@us...> - 2003-09-27 22:26:04
|
Update of /cvsroot/wpdev/xmlscripts/definitions/spawnregions
In directory sc8-pr-cvs1:/tmp/cvs-serv5756/definitions/spawnregions
Added Files:
bucden_fel.xml bucden_tram.xml
Log Message:
added more npcs & spawnregions :)
--- NEW FILE: bucden_fel.xml ---
<!--
=================================================================
| ) (\_ | WOLFPACK 13.0.0 Scripts |
| (( _/{ "-; | Created by: Ripper |
| )).-' {{ ;'` | Revised by: |
| ( ( ;._ \\ ctr | Last Modification: Created |
=================================================================
-->
<definitions>
<spawnregion id="fel_leatherworker1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>leatherworker_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2705" x2="2710" y1="2177" y2="2182" map="0" />
</spawnregion>
<spawnregion id="fel_healer1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>healer_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2705" x2="2709" y1="2144" y2="2148" map="0" />
</spawnregion>
<spawnregion id="fel_innkeeper1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>innkeeper_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2713" x2="2718" y1="2097" y2="2102" map="0" />
</spawnregion>
<spawnregion id="fel_blacksmith1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>blacksmith_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2633" x2="2638" y1="2081" y2="2085" map="0" />
</spawnregion>
<spawnregion id="fel_carpenter1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>carpenter_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2624" x2="2629" y1="2097" y2="2102" map="0" />
</spawnregion>
<spawnregion id="fel_pirate1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>pirate_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2656" x2="2662" y1="2197" y2="2202" map="0" />
</spawnregion>
<spawnregion id="fel_pirate2">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>pirate_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2656" x2="2662" y1="2185" y2="2191" map="0" />
</spawnregion>
<spawnregion id="fel_tavernkeeper1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>tavernkeeper_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2682" x2="2686" y1="2242" y2="2244" map="0" />
</spawnregion>
<spawnregion id="fel_provisioner1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>provisioner_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2731" x2="2735" y1="2251" y2="2254" map="0" />
</spawnregion>
</definitions>
--- NEW FILE: bucden_tram.xml ---
<!--
=================================================================
| ) (\_ | WOLFPACK 13.0.0 Scripts |
| (( _/{ "-; | Created by: Ripper |
| )).-' {{ ;'` | Revised by: |
| ( ( ;._ \\ ctr | Last Modification: Created |
=================================================================
-->
<definitions>
<spawnregion id="tram_leatherworker1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>leatherworker_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2705" x2="2710" y1="2177" y2="2182" map="1" />
</spawnregion>
<spawnregion id="tram_healer1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>healer_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2705" x2="2709" y1="2144" y2="2148" map="1" />
</spawnregion>
<spawnregion id="tram_innkeeper1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>innkeeper_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2713" x2="2718" y1="2097" y2="2102" map="1" />
</spawnregion>
<spawnregion id="tram_blacksmith1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>blacksmith_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2633" x2="2638" y1="2081" y2="2085" map="1" />
</spawnregion>
<spawnregion id="tram_carpenter1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>carpenter_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2624" x2="2629" y1="2097" y2="2102" map="1" />
</spawnregion>
<spawnregion id="tram_pirate1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>pirate_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2656" x2="2662" y1="2197" y2="2202" map="1" />
</spawnregion>
<spawnregion id="tram_pirate2">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>pirate_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2656" x2="2662" y1="2185" y2="2191" map="1" />
</spawnregion>
<spawnregion id="tram_tavernkeeper1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>tavernkeeper_female</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2682" x2="2686" y1="2242" y2="2244" map="1" />
</spawnregion>
<spawnregion id="tram_provisioner1">
<maxnpcamount>1</maxnpcamount>
<mintime>0</mintime>
<maxtime>1</maxtime>
<npcs>
<npc>provisioner_male</npc>
</npcs>
<npcspercycle>1</npcspercycle>
<rectangle x1="2731" x2="2735" y1="2251" y2="2254" map="1" />
</spawnregion>
</definitions>
|
|
From: <ri...@us...> - 2003-09-27 22:24:45
|
Update of /cvsroot/wpdev/xmlscripts/definitions/npcs/humans In directory sc8-pr-cvs1:/tmp/cvs-serv5525/definitions/npcs/humans Modified Files: civilists.xml vendors.xml Log Message: added more npcs & spawnregions :) Index: civilists.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/npcs/humans/civilists.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** civilists.xml 7 Sep 2003 22:00:17 -0000 1.5 --- civilists.xml 27 Sep 2003 22:24:31 -0000 1.6 *************** *** 52,55 **** --- 52,65 ---- <dex><random min="66" max="80" /></dex> <int><random min="66" max="80" /></int> + </npc> + + <!-- Pirate --> + <npc id="pirate_male"> + <inherit>base_male</inherit> + <title>the Pirate</title> + </npc> + <npc id="pirate_female"> + <inherit>base_female</inherit> + <title>the Pirate</title> </npc> </definitions> Index: vendors.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/npcs/humans/vendors.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** vendors.xml 27 Sep 2003 12:30:29 -0000 1.24 --- vendors.xml 27 Sep 2003 22:24:31 -0000 1.25 *************** *** 2412,2414 **** --- 2412,2439 ---- <category>Vendors\Innkeeper (Female)</category> </npc> + <!-- A tavernkeeper vendor --> + <npc id="tavernkeeper_male"> + <inherit>base_male</inherit> + <title>the Tavernkeeper</title> + <ai>Human_Vendor</ai> + <shopkeeper> + <restockable> + </restockable> + <sellable> + </sellable> + </shopkeeper> + <category>Vendors\Tavernkeeper (Male)</category> + </npc> + <npc id="tavernkeeper_female"> + <inherit>base_female</inherit> + <title>the Tavernkeeper</title> + <ai>Human_Vendor</ai> + <shopkeeper> + <restockable> + </restockable> + <sellable> + </sellable> + </shopkeeper> + <category>Vendors\Tavernkeeper (Female)</category> + </npc> </definitions> |
|
From: <ri...@us...> - 2003-09-27 22:24:45
|
Update of /cvsroot/wpdev/xmlscripts In directory sc8-pr-cvs1:/tmp/cvs-serv5525 Modified Files: definitions.xml Log Message: added more npcs & spawnregions :) Index: definitions.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions.xml,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** definitions.xml 27 Sep 2003 20:32:09 -0000 1.55 --- definitions.xml 27 Sep 2003 22:24:31 -0000 1.56 *************** *** 68,71 **** --- 68,73 ---- <include file="definitions/spawnregions/britain_fel.xml" /> <include file="definitions/spawnregions/britain_tram.xml" /> + <include file="definitions/spawnregions/bucden_fel.xml" /> + <include file="definitions/spawnregions/bucden_tram.xml" /> <!-- Items --> |
|
From: <co...@us...> - 2003-09-27 21:29:55
|
Update of /cvsroot/wpdev/xmlscripts In directory sc8-pr-cvs1:/tmp/cvs-serv18058 Modified Files: definitions.xml Log Message: added ore_gem def Index: definitions.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions.xml,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** definitions.xml 14 Sep 2003 16:47:15 -0000 1.54 --- definitions.xml 27 Sep 2003 20:32:09 -0000 1.55 *************** *** 181,184 **** --- 181,185 ---- <include file="definitions/resources/logs.xml"/> <include file="definitions/resources/ingots.xml"/> + <include file="definitions/resources/resgems.xml"/> <!-- Newbie Items --> |
|
From: <co...@us...> - 2003-09-27 20:35:14
|
Update of /cvsroot/wpdev/xmlscripts/definitions In directory sc8-pr-cvs1:/tmp/cvs-serv18815 Modified Files: scripts.xml Log Message: pickaxe added Index: scripts.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/scripts.xml,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** scripts.xml 25 Sep 2003 14:28:19 -0000 1.62 --- scripts.xml 27 Sep 2003 20:35:00 -0000 1.63 *************** *** 73,76 **** --- 73,79 ---- <script>tooltip</script> + <!-- Tools --> + <script>tools.pickaxe</script> + <!-- Skills --> <script>skills</script> |
|
From: <co...@us...> - 2003-09-27 20:34:53
|
Update of /cvsroot/wpdev/xmlscripts/definitions/resources
In directory sc8-pr-cvs1:/tmp/cvs-serv18744
Added Files:
resgems.xml
Log Message:
resgems initial commit
--- NEW FILE: resgems.xml ---
<!--
=================================================================
| ) (\_ | WOLFPACK 13.0.0 Scripts |
| (( _/{ "-; | Created by: DarkStorm |
| )).-' {{ ;'` | Revised by: |
| ( ( ;._ \\ ctr | Last Modification: Created |
=================================================================
-->
<definitions>
<item id="gem">
<id>0x1ea7</id>
<invisible/>
<nodecay/>
</item>
<item id="ore_gem" inherit="gem">
<tag name="resource" value="ore" type="string" />
<tag name="min" value="10" type="int" />
<tag name="max" value="34" type="int" />
<name>Ore gem</name>
<category>Resources\Resource gems</category>
</item>
</definitions>
|
|
From: <co...@us...> - 2003-09-27 20:34:01
|
Update of /cvsroot/wpdev/xmlscripts/scripts/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv18573
Added Files:
__init__.py pickaxe.py
Log Message:
pickaxe script added
--- NEW FILE: __init__.py ---
--- NEW FILE: pickaxe.py ---
#################################################################
# ) (\_ # WOLFPACK 13.0.0 Scripts #
# (( _/{ "-; # Created by: codex #
# )).-' {{ ;'` # Revised by: #
# ( ( ;._ \\ ctr # Last Modification: Sep, 27 '03 #
#################################################################
from wolfpack.consts import *
import wolfpack
import skills
from wolfpack.time import *
import wolfpack.utilities
def onUse( char, item ):
char.socket.sysmessage( 'test' )
char.socket.attachtarget( "tools.pickaxe.response" )
return 1
def response( char, args, target ):
char.socket.sysmessage( 'response' )
return 1
|
|
From: <co...@us...> - 2003-09-27 20:33:05
|
Update of /cvsroot/wpdev/xmlscripts/scripts/tools In directory sc8-pr-cvs1:/tmp/cvs-serv18167/tools Log Message: Directory /cvsroot/wpdev/xmlscripts/scripts/tools added to the repository |
|
From: Dreoth <Dr...@ra...> - 2003-09-27 20:01:24
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Did something happen with wpdev-commits list? Somehow I was removed... :\ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQE/devUOeYLEucUOb4RAhVbAKCDWTt1rrQqZj1dhrDTZKLEG+fL5QCgrUI5 cUUBN9sxF3u21g+M/q9Q0Pc= =gzag -----END PGP SIGNATURE----- |
|
From: <ri...@us...> - 2003-09-27 13:33:58
|
Update of /cvsroot/wpdev/xmlscripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7487/scripts Modified Files: tooltip.py Log Message: small fix Index: tooltip.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/tooltip.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** tooltip.py 23 Sep 2003 12:17:39 -0000 1.9 --- tooltip.py 27 Sep 2003 13:33:44 -0000 1.10 *************** *** 42,46 **** if target.name == '#' or target.name == '': if target.amount > 1: ! tooltip.add( 1050045, " \t#" + str( 0xF9060 + target.id ) + "\t: " + str( target.amount ) ) else: tooltip.add( 0xF9060 + target.id, '' ) --- 42,46 ---- if target.name == '#' or target.name == '': if target.amount > 1: ! tooltip.add( 1050045, " \t#" + str( 0xF9060 + target.id ) + "\t`s: " + str( target.amount ) ) else: tooltip.add( 0xF9060 + target.id, '' ) |
|
From: <ri...@us...> - 2003-09-27 12:30:44
|
Update of /cvsroot/wpdev/xmlscripts/definitions/npcs/humans In directory sc8-pr-cvs1:/tmp/cvs-serv29631/definitions/npcs/humans Modified Files: guards.xml vendors.xml Log Message: added some regions. guards can walk now :) Index: guards.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/npcs/humans/guards.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** guards.xml 23 Sep 2003 15:37:12 -0000 1.6 --- guards.xml 27 Sep 2003 12:30:29 -0000 1.7 *************** *** 14,20 **** <skin><random list="SKINS_HUMAN" /></skin> <ai>Human_Guard</ai> <direction><random min="0" max="7" /></direction> <!-- Facing a random direction --> <totame>1100</totame> - <npcwander type="circle" radius="20" /> <notrain /> </npc> --- 14,20 ---- <skin><random list="SKINS_HUMAN" /></skin> <ai>Human_Guard</ai> + <wandertype>1</wandertype> <direction><random min="0" max="7" /></direction> <!-- Facing a random direction --> <totame>1100</totame> <notrain /> </npc> *************** *** 26,32 **** <skin><random list="SKINS_HUMAN" /></skin> <ai>Human_Guard</ai> <direction><random min="0" max="7" /></direction> <!-- Facing a random direction --> <totame>1100</totame> - <npcwander type="circle" radius="20" /> <notrain /> </npc> --- 26,32 ---- <skin><random list="SKINS_HUMAN" /></skin> <ai>Human_Guard</ai> + <wandertype>1</wandertype> <direction><random min="0" max="7" /></direction> <!-- Facing a random direction --> <totame>1100</totame> <notrain /> </npc> Index: vendors.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/npcs/humans/vendors.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** vendors.xml 27 Sep 2003 02:17:00 -0000 1.23 --- vendors.xml 27 Sep 2003 12:30:29 -0000 1.24 *************** *** 2387,2389 **** --- 2387,2414 ---- <category>Vendors\Shipwright (Female)</category> </npc> + <!-- A innkeeper vendor --> + <npc id="innkeeper_male"> + <inherit>base_male</inherit> + <title>the Innkeeper</title> + <ai>Human_Vendor</ai> + <shopkeeper> + <restockable> + </restockable> + <sellable> + </sellable> + </shopkeeper> + <category>Vendors\Innkeeper (Male)</category> + </npc> + <npc id="innkeeper_female"> + <inherit>base_female</inherit> + <title>the Innkeeper</title> + <ai>Human_Vendor</ai> + <shopkeeper> + <restockable> + </restockable> + <sellable> + </sellable> + </shopkeeper> + <category>Vendors\Innkeeper (Female)</category> + </npc> </definitions> |