wpdev-commits Mailing List for Wolfpack Emu (Page 58)
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: Sebastian H. <dar...@us...> - 2004-08-28 15:44:47
|
Update of /cvsroot/wpdev/xmlscripts/scripts/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26336/commands Modified Files: who.py Log Message: Hopeful fix for the character region Index: who.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/commands/who.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** who.py 17 Jul 2004 12:56:22 -0000 1.2 --- who.py 28 Aug 2004 15:44:39 -0000 1.3 *************** *** 100,104 **** gump.addText( 250, 100, unicode( "%i,%i,%i,%i" % ( pos.x, pos.y, pos.z, pos.map ) ), 0x834 ) gump.addText( 50, 120, unicode( "Region:" ), 0x834 ) ! gump.addText( 250, 120, unicode( "%s" % player.region ), 0x834 ) gump.addText( 50, 140, unicode( "Account / ACL:" ), 0x834 ) gump.addText( 250, 140, unicode( "%s / %s" % ( account.name, account.acl) ), 0x834 ) --- 100,104 ---- gump.addText( 250, 100, unicode( "%i,%i,%i,%i" % ( pos.x, pos.y, pos.z, pos.map ) ), 0x834 ) gump.addText( 50, 120, unicode( "Region:" ), 0x834 ) ! gump.addText( 250, 120, unicode( "%s" % unicode(player.region) ), 0x834 ) gump.addText( 50, 140, unicode( "Account / ACL:" ), 0x834 ) gump.addText( 250, 140, unicode( "%s / %s" % ( account.name, account.acl) ), 0x834 ) |
From: Sebastian H. <dar...@us...> - 2004-08-28 14:52:45
|
Update of /cvsroot/wpdev/xmlscripts/definitions/system In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18865/system Modified Files: access.xml Log Message: allowed allshow and allmove for gms Index: access.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/system/access.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** access.xml 13 May 2004 07:03:55 -0000 1.2 --- access.xml 28 Aug 2004 14:52:32 -0000 1.3 *************** *** 27,32 **** <action name="any" permit="true" /> <action name="ACCOUNT" permit="false" /> ! <action name="ALLMOVE" permit="false" /> ! <action name="ALLSHOW" permit="false" /> <action name="DECORATION" permit="false" /> <action name="DOORGEN" permit="false" /> --- 27,32 ---- <action name="any" permit="true" /> <action name="ACCOUNT" permit="false" /> ! <!-- <action name="ALLMOVE" permit="false" /> --> ! <!-- <action name="ALLSHOW" permit="false" /> --> <action name="DECORATION" permit="false" /> <action name="DOORGEN" permit="false" /> |
From: Sebastian H. <dar...@us...> - 2004-08-28 14:42:28
|
Update of /cvsroot/wpdev/wolfpack/network In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17133/network Modified Files: uosocket.cpp Log Message: fixes for an annoying drop bug that occured with stackable items fixes for missing maps. Index: uosocket.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/network/uosocket.cpp,v retrieving revision 1.399 retrieving revision 1.400 diff -C2 -d -r1.399 -r1.400 *** uosocket.cpp 25 Aug 2004 17:01:33 -0000 1.399 --- uosocket.cpp 28 Aug 2004 14:42:05 -0000 1.400 *************** *** 661,664 **** --- 661,673 ---- // d) Set the Game Time + if (!Maps::instance()->hasMap(pChar->pos().map)) { + Coord_cl pos; + pos.x = 0; + pos.y = 0; + pos.z = 0; + pos.map = 0; + pChar->moveTo(pos); + } + // We're now playing this char pChar->setLogoutTime( 0 ); *************** *** 677,683 **** cUOTxMapDiffs diffs; diffs.addEntry( Maps::instance()->mapPatches( 0 ), Maps::instance()->staticPatches( 0 ) ); ! diffs.addEntry( Maps::instance()->mapPatches( 1 ), Maps::instance()->staticPatches( 1 ) ); ! diffs.addEntry( Maps::instance()->mapPatches( 2 ), Maps::instance()->staticPatches( 2 ) ); ! diffs.addEntry( Maps::instance()->mapPatches( 3 ), Maps::instance()->staticPatches( 3 ) ); send( &diffs ); --- 686,698 ---- cUOTxMapDiffs diffs; diffs.addEntry( Maps::instance()->mapPatches( 0 ), Maps::instance()->staticPatches( 0 ) ); ! if (Maps::instance()->hasMap(1)) { ! diffs.addEntry( Maps::instance()->mapPatches( 1 ), Maps::instance()->staticPatches( 1 ) ); ! if (Maps::instance()->hasMap(2)) { ! diffs.addEntry( Maps::instance()->mapPatches( 2 ), Maps::instance()->staticPatches( 2 ) ); ! if (Maps::instance()->hasMap(3)) { ! diffs.addEntry( Maps::instance()->mapPatches( 3 ), Maps::instance()->staticPatches( 3 ) ); ! } ! } ! } send( &diffs ); |
From: Sebastian H. <dar...@us...> - 2004-08-28 14:42:28
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17133 Modified Files: dragdrop.cpp items.cpp Log Message: fixes for an annoying drop bug that occured with stackable items fixes for missing maps. Index: dragdrop.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/dragdrop.cpp,v retrieving revision 1.242 retrieving revision 1.243 diff -C2 -d -r1.242 -r1.243 *** dragdrop.cpp 22 Aug 2004 02:29:50 -0000 1.242 --- dragdrop.cpp 28 Aug 2004 14:42:04 -0000 1.243 *************** *** 743,747 **** else if ( pCont->canStack( pItem ) ) { ! if ( pCont->amount() + pItem->amount() <= 60000 ) { pCont->setAmount( pCont->amount() + pItem->amount() ); --- 743,747 ---- else if ( pCont->canStack( pItem ) ) { ! if ( pCont->amount() + pItem->amount() <= 65535 ) { pCont->setAmount( pCont->amount() + pItem->amount() ); *************** *** 749,763 **** pItem->remove(); pCont->update(); // Need to update the amount } else { ! // The delta between 60000 and pCont->amount() sub our Amount is the // new amount ! pItem->setAmount( pItem->amount() - ( 60000 - pCont->amount() ) ); ! pCont->setAmount( 60000 ); // Max out the amount pCont->update(); } - return; } --- 749,766 ---- pItem->remove(); pCont->update(); // Need to update the amount + pCont->resendTooltip(); + return; } else { ! // The delta between 65535 and pCont->amount() sub our Amount is the // new amount ! pItem->setAmount( pItem->amount() - ( 65535 - pCont->amount() ) ); ! pItem->resendTooltip(); ! pCont->setAmount( 65535 ); // Max out the amount pCont->update(); + pCont->resendTooltip(); } } *************** *** 781,784 **** --- 784,788 ---- else { + pItem->removeFromCont(); pItem->moveTo( pCont->pos() + Coord_cl( 0, 0, 2 ) ); } Index: items.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/items.cpp,v retrieving revision 1.441 retrieving revision 1.442 diff -C2 -d -r1.441 -r1.442 *** items.cpp 27 Aug 2004 14:41:15 -0000 1.441 --- items.cpp 28 Aug 2004 14:42:04 -0000 1.442 *************** *** 97,101 **** this->basedef_ = src.basedef_; this->totalweight_ = amount_ * weight(); ! moveTo( src.pos_ ); } --- 97,102 ---- this->basedef_ = src.basedef_; this->totalweight_ = amount_ * weight(); ! this->multi_ = 0; ! moveTo( src.pos_, true ); } |
From: Sebastian H. <dar...@us...> - 2004-08-28 12:15:45
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25299 Modified Files: basedef.cpp Log Message: fix for script reload Index: basedef.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/basedef.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** basedef.cpp 27 Aug 2004 14:41:15 -0000 1.11 --- basedef.cpp 28 Aug 2004 12:15:35 -0000 1.12 *************** *** 126,129 **** --- 126,130 ---- QStringList scripts = QStringList::split(",", baseScriptList_); QStringList::const_iterator it; + baseScripts_.clear(); for (it = scripts.begin(); it != scripts.end(); ++it) { cPythonScript *script = ScriptManager::instance()->find((*it).latin1()); *************** *** 228,231 **** --- 229,233 ---- QStringList scripts = QStringList::split(",", baseScriptList_); QStringList::const_iterator it; + baseScripts_.clear(); for (it = scripts.begin(); it != scripts.end(); ++it) { cPythonScript *script = ScriptManager::instance()->find((*it).latin1()); |
From: Sebastian H. <dar...@us...> - 2004-08-28 12:10:00
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24337 Modified Files: scriptmanager.cpp Log Message: fix for script reload Index: scriptmanager.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/scriptmanager.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** scriptmanager.cpp 27 Aug 2004 14:41:16 -0000 1.24 --- scriptmanager.cpp 28 Aug 2004 12:09:51 -0000 1.25 *************** *** 95,98 **** --- 95,101 ---- for ( pChar = iter_chars.first(); pChar; pChar = iter_chars.next() ) pChar->unfreezeScriptChain(); + + CharBaseDefs::instance()->refreshScripts(); + ItemBaseDefs::instance()->refreshScripts(); } |
From: Sebastian H. <dar...@us...> - 2004-08-27 23:59:09
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26184 Modified Files: world.cpp Log Message: postload is now called for binary save objects. Index: world.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/world.cpp,v retrieving revision 1.118 retrieving revision 1.119 diff -C2 -d -r1.118 -r1.119 *** world.cpp 23 Aug 2004 21:37:39 -0000 1.118 --- world.cpp 27 Aug 2004 23:58:53 -0000 1.119 *************** *** 440,448 **** unsigned int percent = 0; unsigned int loadStart = getNormalizedTime(); do { type = reader.readByte(); - if ( typemap.contains( type ) ) { --- 440,448 ---- unsigned int percent = 0; unsigned int loadStart = getNormalizedTime(); + QPtrList<PersistentObject> objects; do { type = reader.readByte(); if ( typemap.contains( type ) ) { *************** *** 452,455 **** --- 452,456 ---- try { object->load( reader ); + objects.append(object); } catch (wpException e) { Console::instance()->log( LOG_WARNING, e.error() + "\n" ); *************** *** 522,525 **** --- 523,532 ---- reader.close(); + QPtrList<PersistentObject>::const_iterator cit(objects.begin()); + while (cit != objects.end()) { + (*cit)->postload(reader.version()); + ++cit; + } + unsigned int duration = getNormalizedTime() - loadStart; |
From: Sebastian H. <dar...@us...> - 2004-08-27 18:57:08
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7222 Modified Files: ChangeLog baseregion.h spawnregions.cpp walking.cpp Log Message: fixes for walking fixes for maps fixes for spawnregions Index: ChangeLog =================================================================== RCS file: /cvsroot/wpdev/wolfpack/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** ChangeLog 27 Aug 2004 14:41:15 -0000 1.14 --- ChangeLog 27 Aug 2004 18:56:59 -0000 1.15 *************** *** 23,26 **** --- 23,29 ---- - hasscript(a) will return true if a is in the basescripts. - addscript now prepends a new script rather than appending it. + - the python .scripts property includes all script names, including the scripts in basescripts. + - added a new property .basescripts to get a comma separated list of all scripts in the + basescripts list. Index: walking.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/walking.cpp,v retrieving revision 1.138 retrieving revision 1.139 diff -C2 -d -r1.138 -r1.139 *** walking.cpp 25 Aug 2004 17:01:24 -0000 1.138 --- walking.cpp 27 Aug 2004 18:56:59 -0000 1.139 *************** *** 80,84 **** #define P_M_MAX_Z_INFLUENCE 15 #define P_M_MAX_Z_FALL 20 // You can fall 20 tiles ofcourse !! ! #define P_M_MAX_Z_BLOCKS 15 // These are the debugging defines --- 80,84 ---- #define P_M_MAX_Z_INFLUENCE 15 #define P_M_MAX_Z_FALL 20 // You can fall 20 tiles ofcourse !! ! #define P_M_MAX_Z_BLOCKS 14 // These are the debugging defines *************** *** 111,116 **** Q_UINT8 height; bool walkable; ! stBlockItem() : z( -128 ), height( 0 ), walkable( false ) { } --- 111,117 ---- Q_UINT8 height; bool walkable; + bool maptile; ! stBlockItem() : z( -128 ), height( 0 ), walkable( false ), maptile( false ) { } *************** *** 143,146 **** --- 144,148 ---- // Process the map at that position stBlockItem mapBlock; + mapBlock.maptile = true; mapBlock.z = Maps::instance()->mapAverageElevation( pos ); mapBlock.height = 0; *************** *** 148,152 **** // TODO: Calculate the REAL average Z Value of that Map Tile here! Otherwise clients will have minor walking problems. map_st mapCell = Maps::instance()->seekMap( pos ); ! mapBlock.z = mapCell.z; land_st mapTile = TileCache::instance()->getLand( mapCell.id ); --- 150,154 ---- // TODO: Calculate the REAL average Z Value of that Map Tile here! Otherwise clients will have minor walking problems. map_st mapCell = Maps::instance()->seekMap( pos ); ! //mapBlock.z = mapCell.z;*/ land_st mapTile = TileCache::instance()->getLand( mapCell.id ); *************** *** 187,191 **** // If we are a stair only the half height counts (round up) if ( tTile.flag2 & 0x04 ) ! staticBlock.height = ( Q_UINT8 ) ( tTile.height + 1 / 2 ); else staticBlock.height = tTile.height; --- 189,193 ---- // If we are a stair only the half height counts (round up) if ( tTile.flag2 & 0x04 ) ! staticBlock.height = ( Q_UINT8 ) ( ( tTile.height + 1 ) / 2 ); else staticBlock.height = tTile.height; *************** *** 283,286 **** --- 285,289 ---- Q_UINT32 i; bool priviledged = false; + Q_INT32 oldz = pos.z; P_PLAYER player = dynamic_cast<P_PLAYER>( pChar ); *************** *** 299,312 **** return false; ! // If the top of the item is within our max-climb reach ! // then the first check passed. in addition we need to ! // check if the "bottom" of the item is reachable ! // I would say 2 is a good "reach" value for the bottom ! // of any item ! if ( ( item.walkable || priviledged ) && ( itemTop <= pos.z + P_M_MAX_Z_CLIMB ) && ( itemTop >= pos.z - P_M_MAX_Z_FALL ) /*&& ( item.z <= pos.z + 2 )*/ ) ! { ! pos.z = itemTop; ! found = true; ! break; } } --- 302,321 ---- return false; ! if ( item.walkable || priviledged ) { ! // If the top of the item is within our max-climb reach ! // then the first check passed. in addition we need to ! // check if the "bottom" of the item is reachable ! // I would say 2 is a good "reach" value for the bottom ! // of any item ! if ( itemTop < pos.z + P_M_MAX_Z_CLIMB && itemTop >= pos.z - P_M_MAX_Z_FALL ) { ! pos.z = itemTop; ! found = true; ! break; ! // Climbing maptiles is 5 tiles easier ! } else if ( item.maptile && itemTop < pos.z + P_M_MAX_Z_CLIMB + 5 && itemTop >= pos.z - P_M_MAX_Z_FALL ) { ! pos.z = itemTop; ! found = true; ! break; ! } } } *************** *** 331,351 **** Q_INT8 itemTop = ( item.z + item.height ); // Does the top of the item looms into our space // Like before 15 is the assumed height of ourself if ( ( itemTop > pos.z ) && ( itemTop < pos.z + P_M_MAX_Z_BLOCKS ) ) return false; // Or the bottom ? ! if ( ( item.z > pos.z ) && ( item.z < pos.z + P_M_MAX_Z_BLOCKS ) ) return false; // Or does it spread the whole range ? ! if ( ( item.z <= pos.z ) && ( itemTop >= pos.z + P_M_MAX_Z_BLOCKS ) ) return false; - - // If the Item Tops are already below our current position exit the - // loop, we're sorted by those ! - if ( itemTop <= pos.z ) - break; } --- 340,361 ---- Q_INT8 itemTop = ( item.z + item.height ); + // If the item is below what we step on, ignore it + if (itemTop <= pos.z) { + continue; + } + // Does the top of the item looms into our space // Like before 15 is the assumed height of ourself + // Use the new position here. if ( ( itemTop > pos.z ) && ( itemTop < pos.z + P_M_MAX_Z_BLOCKS ) ) return false; // Or the bottom ? ! if ( ( item.z > oldz ) && ( item.z < oldz + P_M_MAX_Z_BLOCKS ) ) return false; // Or does it spread the whole range ? ! if ( ( item.z <= oldz ) && ( itemTop >= oldz + P_M_MAX_Z_BLOCKS ) ) return false; } Index: spawnregions.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/spawnregions.cpp,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** spawnregions.cpp 10 Aug 2004 03:15:57 -0000 1.67 --- spawnregions.cpp 27 Aug 2004 18:56:59 -0000 1.68 *************** *** 210,216 **** bool cSpawnRegion::findValidSpot( Coord_cl& pos ) { ! // Try up to 100 times. ! for ( unsigned int i = 0; i < 100; ++i ) ! { int rndRectNum = RandomNum( 0, this->rectangles_.size() - 1 ); pos.x = RandomNum( this->rectangles_[rndRectNum].x1, this->rectangles_[rndRectNum].x2 ); --- 210,215 ---- bool cSpawnRegion::findValidSpot( Coord_cl& pos ) { ! // Try up to 25 times. ! for ( unsigned int i = 0; i < 25; ++i ) { int rndRectNum = RandomNum( 0, this->rectangles_.size() - 1 ); pos.x = RandomNum( this->rectangles_[rndRectNum].x1, this->rectangles_[rndRectNum].x2 ); Index: baseregion.h =================================================================== RCS file: /cvsroot/wpdev/wolfpack/baseregion.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** baseregion.h 27 Jul 2004 04:15:08 -0000 1.25 --- baseregion.h 27 Aug 2004 18:56:59 -0000 1.26 *************** *** 164,167 **** --- 164,176 ---- toinsert_.y2 = Tag->getAttribute( "y2" ).toUShort(); toinsert_.map = Tag->getAttribute( "map" ).toUShort(); + + if (toinsert_.y1 > toinsert_.y2) { + std::swap(toinsert_.y1, toinsert_.y2); + } + + if (toinsert_.x1 > toinsert_.x2) { + std::swap(toinsert_.x1, toinsert_.x2); + } + this->rectangles_.push_back( toinsert_ ); } |
From: Sebastian H. <dar...@us...> - 2004-08-27 18:57:08
|
Update of /cvsroot/wpdev/wolfpack/muls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7222/muls Modified Files: maps.cpp Log Message: fixes for walking fixes for maps fixes for spawnregions Index: maps.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/muls/maps.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** maps.cpp 19 Aug 2004 01:55:56 -0000 1.9 --- maps.cpp 27 Aug 2004 18:56:59 -0000 1.10 *************** *** 32,35 **** --- 32,37 ---- #include "../defines.h" #include "../items.h" + #include "../console.h" + #include "../log.h" #include "../serverconfig.h" *************** *** 115,118 **** --- 117,121 ---- if ( !staticsfile.open( IO_ReadOnly ) ) throw wpFileNotFoundException( QString( "Couldn't open file %1" ).arg( statics ) ); + staticsCache.setAutoDelete( true ); mapCache.setAutoDelete( true ); *************** *** 319,326 **** d.insert( id, p ); return true; ! } ! catch ( wpFileNotFoundException& e ) ! { ! qWarning( e.error() ); return false; } --- 322,327 ---- d.insert( id, p ); return true; ! } catch ( wpFileNotFoundException& e ) { ! Console::instance()->log(LOG_WARNING, e.error()); return false; } *************** *** 568,573 **** { const_iterator it = d.find( id ); ! if ( it == d.end() ) ! throw wpException( QString( "[cMaps::staticsIterator line %1] map id(%2) not registered!" ).arg( __LINE__ ).arg( id ) ); return StaticsIterator( x, y, it.data(), exact ); } --- 569,576 ---- { const_iterator it = d.find( id ); ! if ( it == d.end() ) { ! Console::instance()->log(LOG_ERROR, QString( "[cMaps::staticsIterator line %1] map id(%2) not registered!\n" ).arg( __LINE__ ).arg( id ) ); ! return StaticsIterator( x, y, 0, true ); ! } return StaticsIterator( x, y, it.data(), exact ); } *************** *** 606,611 **** baseY = y / 8; pos = 0; ! ! if ( baseX < d->width && baseY < d->height ) load( d, x, y, exact ); } --- 609,614 ---- baseY = y / 8; pos = 0; ! ! if ( d && baseX < d->width && baseY < d->height ) load( d, x, y, exact ); } |
From: Richard M. <dr...@us...> - 2004-08-27 17:27:37
|
Update of /cvsroot/wpdev/xmlscripts/documentation/webroot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22023/documentation/webroot Modified Files: ChangeLog.wolfpack Log Message: More up to date. Index: ChangeLog.wolfpack =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/documentation/webroot/ChangeLog.wolfpack,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** ChangeLog.wolfpack 27 Aug 2004 17:19:24 -0000 1.47 --- ChangeLog.wolfpack 27 Aug 2004 17:27:26 -0000 1.48 *************** *** 3,12 **** Wolfpack 12.9.9 Beta (CVS) * Core Changes: ! - Added an email field for accounts. ! - Timer fixes. ! - Changes to event/script functions. ( See Python changes. ) ! - Fixes for walking and ladders ! - Added support for basescripts, read-only assigned scripts. ! - Added compression support for binary saves. * Definition Changes: - Tag Changes: --- 3,30 ---- Wolfpack 12.9.9 Beta (CVS) * Core Changes: ! - Allowed viewing and setting account properties via .set and .show. ! Replace <property> with the name of the account property and <value> ! with the value you want to set: ! set account.<property> <value> ! show account.<property> ! - Moved the account property getters and setters into the cAccount class. ! - Added an e-mail field to the account database. ! - Added the "email" property for accounts to the python interface. ! - .exportdefinitions now exports data about NPCs and their equipment to the ! categories.db database. ! - .exportdefinitions now exports data about multis to the ! categories.db database. ! - Backup functionality for the binary save driver. ! - Binary backups can automatically be compressed using gzip. ! - The number of backups kept can be limited. ! - Allowed scripts to be attached to base definitions by using ! <basescripts>a,b,c</basescripts>. ! Those scripts are attached to objects by using their baseid property. ! If you change the <basescripts> tags in the definition, all objects using ! that definition will use the new scripts automatically. ! - onDetach and onAttach are not called for those scripts. ! - hasscript(a) will return true if a is in the basescripts. ! - addscript now prepends a new script rather than appending it. ! - Fix for spawnregions where y1 > y2. * Definition Changes: - Tag Changes: |
From: Richard M. <dr...@us...> - 2004-08-27 17:19:34
|
Update of /cvsroot/wpdev/xmlscripts/documentation/webroot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20531/documentation/webroot Modified Files: ChangeLog.wolfpack Log Message: More updates, and more verbose. Index: ChangeLog.wolfpack =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/documentation/webroot/ChangeLog.wolfpack,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** ChangeLog.wolfpack 26 Aug 2004 21:11:30 -0000 1.46 --- ChangeLog.wolfpack 27 Aug 2004 17:19:24 -0000 1.47 *************** *** 6,16 **** --- 6,22 ---- - Timer fixes. - Changes to event/script functions. ( See Python changes. ) + - Fixes for walking and ladders + - Added support for basescripts, read-only assigned scripts. + - Added compression support for binary saves. * Definition Changes: - Tag Changes: <events></events> is now <scripts></scripts> + - Basescripts added to many scripts. Read only assigned scripts. + Format is: <basescripts></basescripts> * Python Script Changes: - Function Changes: Old: addevent() hasevent() removeevent() New: addscript() hasscript() removescript() + Note: hasevent still exists, but has another purpose. - Added the bolt command, just lightnings the target. - Added the email command, changes your account's email. *************** *** 18,28 **** - Fixes for the account command: Fixed a few typos. ! Fixed a bug in updating the password Added support for the email field. ! Fixed a bug with updating passwords. ( Dreoth was tired. :P ) ! - Tweaked the hunger script. ! - Fixed an update bug with npcs and the dye command. - Fixed a bug with the dupe command. * Misc. Changes: * Known Issues, Bugs, and Missing Features: - Some skills are still incomplete. --- 24,34 ---- - Fixes for the account command: Fixed a few typos. ! Fixed a bug in updating the passwords of accounts. Added support for the email field. ! - Tweaked the hunger script to affect hunger less often. ! - Fixed an update bug with NPCs and the dye command. - Fixed a bug with the dupe command. * Misc. Changes: + - Experimental Mac OSX Support * Known Issues, Bugs, and Missing Features: - Some skills are still incomplete. |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:55:27
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/buildings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26421/items/buildings Modified Files: dungeon.xml Log Message: some fixes Index: dungeon.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/dungeon.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** dungeon.xml 27 Aug 2004 14:43:26 -0000 1.12 --- dungeon.xml 27 Aug 2004 14:55:17 -0000 1.13 *************** *** 376,380 **** <id>0xEE3</id> <category>Dungeon\Spiderwebs\Spiderweb 1</category> ! <basescripts>spiderweb</basescripts> <maxhealth>100</maxhealth> <health>100</health> --- 376,380 ---- <id>0xEE3</id> <category>Dungeon\Spiderwebs\Spiderweb 1</category> ! <scripts>spiderweb</scripts> <maxhealth>100</maxhealth> <health>100</health> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:09
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/armory/hats Modified Files: bandana.xml bear_mask.xml bonnet.xml cap.xml deer_mask.xml feathered_hat.xml floppy_hat.xml jester_hat.xml jesters_cap.xml orc_masks.xml skull_cap.xml straw_hat.xml tall_straw_hat.xml tribal_masks.xml tricorne_hat.xml wide-brim_hat.xml wizards_hat.xml Log Message: basescripts property Index: tricorne_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/tricorne_hat.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tricorne_hat.xml 25 Aug 2004 17:03:40 -0000 1.3 --- tricorne_hat.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 21,25 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 21,25 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: jester_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/jester_hat.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** jester_hat.xml 25 Aug 2004 17:03:40 -0000 1.3 --- jester_hat.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 17,21 **** <durability><random min="20" max="25" /></durability> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 17,21 ---- <durability><random min="20" max="25" /></durability> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: bandana.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/bandana.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bandana.xml 25 Aug 2004 17:03:40 -0000 1.4 --- bandana.xml 27 Aug 2004 14:43:24 -0000 1.5 *************** *** 21,25 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 21,25 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: tall_straw_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/tall_straw_hat.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tall_straw_hat.xml 25 Aug 2004 17:03:40 -0000 1.3 --- tall_straw_hat.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: bonnet.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/bonnet.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bonnet.xml 25 Aug 2004 17:03:40 -0000 1.3 --- bonnet.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: wide-brim_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/wide-brim_hat.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wide-brim_hat.xml 25 Aug 2004 17:03:40 -0000 1.3 --- wide-brim_hat.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: bear_mask.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/bear_mask.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** bear_mask.xml 25 Aug 2004 17:03:40 -0000 1.5 --- bear_mask.xml 27 Aug 2004 14:43:24 -0000 1.6 *************** *** 19,23 **** <value>40</value> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 19,23 ---- <value>40</value> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: cap.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/cap.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cap.xml 25 Aug 2004 17:03:40 -0000 1.3 --- cap.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: deer_mask.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/deer_mask.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** deer_mask.xml 25 Aug 2004 17:03:40 -0000 1.5 --- deer_mask.xml 27 Aug 2004 14:43:24 -0000 1.6 *************** *** 18,22 **** <weight>4.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 18,22 ---- <weight>4.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: feathered_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/feathered_hat.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** feathered_hat.xml 25 Aug 2004 17:03:40 -0000 1.3 --- feathered_hat.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: straw_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/straw_hat.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** straw_hat.xml 25 Aug 2004 17:03:40 -0000 1.3 --- straw_hat.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: wizards_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/wizards_hat.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wizards_hat.xml 25 Aug 2004 17:03:40 -0000 1.3 --- wizards_hat.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: jesters_cap.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/jesters_cap.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** jesters_cap.xml 25 Aug 2004 17:03:40 -0000 1.3 --- jesters_cap.xml 27 Aug 2004 14:43:24 -0000 1.4 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: orc_masks.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/orc_masks.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** orc_masks.xml 25 Aug 2004 17:03:40 -0000 1.4 --- orc_masks.xml 27 Aug 2004 14:43:24 -0000 1.5 *************** *** 17,21 **** <weight>4.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 17,21 ---- <weight>4.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: floppy_hat.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/floppy_hat.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** floppy_hat.xml 25 Aug 2004 17:03:40 -0000 1.4 --- floppy_hat.xml 27 Aug 2004 14:43:24 -0000 1.5 *************** *** 20,24 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 20,24 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: skull_cap.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/skull_cap.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** skull_cap.xml 25 Aug 2004 17:03:40 -0000 1.4 --- skull_cap.xml 27 Aug 2004 14:43:24 -0000 1.5 *************** *** 14,18 **** <weight>1.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 14,18 ---- <weight>1.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> Index: tribal_masks.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/hats/tribal_masks.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tribal_masks.xml 25 Aug 2004 17:03:40 -0000 1.4 --- tribal_masks.xml 27 Aug 2004 14:43:24 -0000 1.5 *************** *** 17,21 **** <weight>4.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 17,21 ---- <weight>4.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> *************** *** 35,39 **** <weight>4.0</weight> <type>1009</type> ! <scripts>equipment</scripts> </item> --- 35,39 ---- <weight>4.0</weight> <type>1009</type> ! <basescripts>equipment</basescripts> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:09
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/armory/plate Modified Files: female_plate_armor.xml plate_helm.xml platemail.xml platemail_arms.xml platemail_gloves.xml platemail_gorget.xml platemail_legs.xml Log Message: basescripts property Index: platemail_legs.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate/platemail_legs.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** platemail_legs.xml 25 Aug 2004 17:03:41 -0000 1.12 --- platemail_legs.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 22,26 **** <sellprice>109</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Platemail\Legs (N/S)</category> </item> --- 22,26 ---- <sellprice>109</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Platemail\Legs (N/S)</category> </item> Index: platemail.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate/platemail.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** platemail.xml 25 Aug 2004 17:03:41 -0000 1.13 --- platemail.xml 27 Aug 2004 14:43:24 -0000 1.14 *************** *** 22,26 **** <sellprice>136</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Platemail\Male Armor (N/S)</category> </item> --- 22,26 ---- <sellprice>136</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Platemail\Male Armor (N/S)</category> </item> Index: platemail_arms.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate/platemail_arms.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** platemail_arms.xml 25 Aug 2004 17:03:41 -0000 1.12 --- platemail_arms.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 22,26 **** <sellprice>90</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Platemail\Arms (N/S)</category> </item> --- 22,26 ---- <sellprice>90</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Platemail\Arms (N/S)</category> </item> Index: platemail_gloves.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate/platemail_gloves.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** platemail_gloves.xml 25 Aug 2004 17:03:41 -0000 1.12 --- platemail_gloves.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 22,26 **** <sellprice>72</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Platemail\Gloves (N/S)</category> </item> --- 22,26 ---- <sellprice>72</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Platemail\Gloves (N/S)</category> </item> Index: female_plate_armor.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate/female_plate_armor.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** female_plate_armor.xml 25 Aug 2004 17:03:41 -0000 1.12 --- female_plate_armor.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 22,26 **** <sellprice>122</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Platemail\Female Armor (N/S)</category> </item> --- 22,26 ---- <sellprice>122</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Platemail\Female Armor (N/S)</category> </item> Index: plate_helm.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate/plate_helm.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** plate_helm.xml 25 Aug 2004 17:03:41 -0000 1.12 --- plate_helm.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 22,26 **** <sellprice>85</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Platemail\Helm (N/S)</category> </item> --- 22,26 ---- <sellprice>85</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Platemail\Helm (N/S)</category> </item> Index: platemail_gorget.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/plate/platemail_gorget.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** platemail_gorget.xml 25 Aug 2004 17:03:41 -0000 1.11 --- platemail_gorget.xml 27 Aug 2004 14:43:24 -0000 1.12 *************** *** 22,26 **** <sellprice>62</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Platemail\Gorget</category> </item> --- 22,26 ---- <sellprice>62</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Platemail\Gorget</category> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:09
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/armory/shields Modified Files: bronze_shield.xml buckler.xml chaos_shield.xml heater_shield.xml metal_kite_shield.xml metal_shield.xml order_shield.xml wooden_kite_shield.xml wooden_shield.xml Log Message: basescripts property Index: wooden_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/wooden_shield.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** wooden_shield.xml 25 Aug 2004 17:03:42 -0000 1.12 --- wooden_shield.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 20,24 **** <sellprice>32</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Wooden Shield</category> </item> --- 20,24 ---- <sellprice>32</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Wooden Shield</category> </item> Index: metal_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/metal_shield.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** metal_shield.xml 25 Aug 2004 17:03:42 -0000 1.10 --- metal_shield.xml 27 Aug 2004 14:43:25 -0000 1.11 *************** *** 22,26 **** <sellprice>49</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Metal Shield</category> </item> --- 22,26 ---- <sellprice>49</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Metal Shield</category> </item> Index: metal_kite_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/metal_kite_shield.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** metal_kite_shield.xml 25 Aug 2004 17:03:42 -0000 1.11 --- metal_kite_shield.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 22,26 **** <sellprice>67</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Metal Kite (N/S)</category> </item> --- 22,26 ---- <sellprice>67</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Metal Kite (N/S)</category> </item> Index: bronze_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/bronze_shield.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** bronze_shield.xml 25 Aug 2004 17:03:42 -0000 1.10 --- bronze_shield.xml 27 Aug 2004 14:43:25 -0000 1.11 *************** *** 22,26 **** <sellprice>50</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Bronze Shield</category> </item> --- 22,26 ---- <sellprice>50</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Bronze Shield</category> </item> Index: chaos_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/chaos_shield.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** chaos_shield.xml 25 Aug 2004 17:03:42 -0000 1.11 --- chaos_shield.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 21,25 **** <sellprice>0</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Chaos Shield</category> </item> --- 21,25 ---- <sellprice>0</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Chaos Shield</category> </item> Index: wooden_kite_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/wooden_kite_shield.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** wooden_kite_shield.xml 25 Aug 2004 17:03:42 -0000 1.11 --- wooden_kite_shield.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 22,26 **** <sellprice>60</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Wooden Kite (N/S)</category> </item> --- 22,26 ---- <sellprice>60</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Wooden Kite (N/S)</category> </item> Index: buckler.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/buckler.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** buckler.xml 25 Aug 2004 17:03:42 -0000 1.10 --- buckler.xml 27 Aug 2004 14:43:25 -0000 1.11 *************** *** 22,26 **** <sellprice>33</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Buckler</category> </item> --- 22,26 ---- <sellprice>33</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Buckler</category> </item> Index: heater_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/heater_shield.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** heater_shield.xml 25 Aug 2004 17:03:42 -0000 1.11 --- heater_shield.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 22,26 **** <sellprice>87</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Heater (N/S)</category> </item> --- 22,26 ---- <sellprice>87</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Heater (N/S)</category> </item> Index: order_shield.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/shields/order_shield.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** order_shield.xml 25 Aug 2004 17:03:42 -0000 1.12 --- order_shield.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 21,25 **** <sellprice>0</sellprice> <type>1008</type> ! <scripts>equipment</scripts> <category>Armor\Base\Shields\Order Shield (N/S)</category> </item> --- 21,25 ---- <sellprice>0</sellprice> <type>1008</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Shields\Order Shield (N/S)</category> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:09
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/armory/ring In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/armory/ring Modified Files: ringmail_gloves.xml ringmail_leggings.xml ringmail_sleeves.xml ringmail_tunic.xml Log Message: basescripts property Index: ringmail_tunic.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/ring/ringmail_tunic.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ringmail_tunic.xml 25 Aug 2004 17:03:41 -0000 1.12 --- ringmail_tunic.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 22,26 **** <sellprice>109</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Ringmail\Tunic (N/S)</category> </item> --- 22,26 ---- <sellprice>109</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Ringmail\Tunic (N/S)</category> </item> Index: ringmail_sleeves.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/ring/ringmail_sleeves.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ringmail_sleeves.xml 25 Aug 2004 17:03:41 -0000 1.12 --- ringmail_sleeves.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 21,25 **** <sellprice>63</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Ringmail\Sleeves (N/S)</category> </item> --- 21,25 ---- <sellprice>63</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Ringmail\Sleeves (N/S)</category> </item> Index: ringmail_leggings.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/ring/ringmail_leggings.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ringmail_leggings.xml 25 Aug 2004 17:03:41 -0000 1.12 --- ringmail_leggings.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 22,26 **** <sellprice>73</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Ringmail\Leggings (N/S)</category> </item> --- 22,26 ---- <sellprice>73</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Ringmail\Leggings (N/S)</category> </item> Index: ringmail_gloves.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/ring/ringmail_gloves.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ringmail_gloves.xml 25 Aug 2004 17:03:41 -0000 1.12 --- ringmail_gloves.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 22,26 **** <sellprice>61</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Ringmail\Gloves (N/S)</category> </item> --- 22,26 ---- <sellprice>61</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Ringmail\Gloves (N/S)</category> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:09
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/books In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/books Modified Files: base.xml Log Message: basescripts property Index: base.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/books/base.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** base.xml 25 Aug 2004 17:03:42 -0000 1.6 --- base.xml 27 Aug 2004 14:43:25 -0000 1.7 *************** *** 15,19 **** <weight>1.0</weight> <!-- A bit low i think --> <type>11</type> ! <scripts>book</scripts> </item> --- 15,19 ---- <weight>1.0</weight> <!-- A bit low i think --> <type>11</type> ! <basescripts>book</basescripts> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:09
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/armory/studded Modified Files: studded_armor.xml studded_bustier.xml studded_gloves.xml studded_gorget.xml studded_leggings.xml studded_sleeves.xml studded_tunic.xml Log Message: basescripts property Index: studded_bustier.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded/studded_bustier.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** studded_bustier.xml 25 Aug 2004 17:03:42 -0000 1.11 --- studded_bustier.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 21,25 **** <sellprice>60</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Studded Leather\Bustier (N/S)</category> </item> --- 21,25 ---- <sellprice>60</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Studded Leather\Bustier (N/S)</category> </item> Index: studded_gloves.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded/studded_gloves.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** studded_gloves.xml 25 Aug 2004 17:03:42 -0000 1.11 --- studded_gloves.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 21,25 **** <sellprice>39</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Studded Leather\Gloves (N/S)</category> </item> --- 21,25 ---- <sellprice>39</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Studded Leather\Gloves (N/S)</category> </item> Index: studded_armor.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded/studded_armor.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** studded_armor.xml 25 Aug 2004 17:03:42 -0000 1.12 --- studded_armor.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 21,25 **** <sellprice>71</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Studded Leather\Female Armor (N/S)</category> </item> --- 21,25 ---- <sellprice>71</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Studded Leather\Female Armor (N/S)</category> </item> Index: studded_tunic.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded/studded_tunic.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** studded_tunic.xml 25 Aug 2004 17:03:42 -0000 1.11 --- studded_tunic.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 21,25 **** <sellprice>64</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Studded Leather\Tunic (N/S)</category> </item> --- 21,25 ---- <sellprice>64</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Studded Leather\Tunic (N/S)</category> </item> Index: studded_gorget.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded/studded_gorget.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** studded_gorget.xml 25 Aug 2004 17:03:42 -0000 1.11 --- studded_gorget.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 21,25 **** <sellprice>36</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Studded Leather\Gorget</category> </item> --- 21,25 ---- <sellprice>36</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Studded Leather\Gorget</category> </item> Index: studded_sleeves.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded/studded_sleeves.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** studded_sleeves.xml 25 Aug 2004 17:03:42 -0000 1.11 --- studded_sleeves.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 21,25 **** <sellprice>43</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Studded Leather\Sleeves (N/S)</category> </item> --- 21,25 ---- <sellprice>43</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Studded Leather\Sleeves (N/S)</category> </item> Index: studded_leggings.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/studded/studded_leggings.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** studded_leggings.xml 25 Aug 2004 17:03:42 -0000 1.11 --- studded_leggings.xml 27 Aug 2004 14:43:25 -0000 1.12 *************** *** 21,25 **** <sellprice>51</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Studded Leather\Leggings (N/S)</category> </item> --- 21,25 ---- <sellprice>51</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Studded Leather\Leggings (N/S)</category> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:09
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/armory/leather Modified Files: leather_armor.xml leather_bustier.xml leather_cap.xml leather_gloves.xml leather_gorget.xml leather_leggings.xml leather_shorts.xml leather_skirt.xml leather_sleeves.xml leather_tunic.xml Log Message: basescripts property Index: leather_shorts.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_shorts.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** leather_shorts.xml 25 Aug 2004 17:03:41 -0000 1.12 --- leather_shorts.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 21,25 **** <sellprice>43</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Shorts (N/S)</category> </item> --- 21,25 ---- <sellprice>43</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Shorts (N/S)</category> </item> Index: leather_gorget.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_gorget.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** leather_gorget.xml 25 Aug 2004 17:03:41 -0000 1.11 --- leather_gorget.xml 27 Aug 2004 14:43:24 -0000 1.12 *************** *** 21,25 **** <sellprice>37</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Gorget</category> </item> --- 21,25 ---- <sellprice>37</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Gorget</category> </item> Index: leather_gloves.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_gloves.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** leather_gloves.xml 25 Aug 2004 17:03:41 -0000 1.12 --- leather_gloves.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 21,25 **** <sellprice>30</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Gloves (N/S)</category> </item> --- 21,25 ---- <sellprice>30</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Gloves (N/S)</category> </item> Index: leather_sleeves.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_sleeves.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** leather_sleeves.xml 25 Aug 2004 17:03:41 -0000 1.12 --- leather_sleeves.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 21,25 **** <sellprice>40</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Sleeves (N/S)</category> </item> --- 21,25 ---- <sellprice>40</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Sleeves (N/S)</category> </item> Index: leather_leggings.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_leggings.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** leather_leggings.xml 25 Aug 2004 17:03:41 -0000 1.12 --- leather_leggings.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 21,25 **** <sellprice>40</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Leggings (N/S)</category> </item> --- 21,25 ---- <sellprice>40</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Leggings (N/S)</category> </item> Index: leather_bustier.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_bustier.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** leather_bustier.xml 25 Aug 2004 17:03:41 -0000 1.13 --- leather_bustier.xml 27 Aug 2004 14:43:24 -0000 1.14 *************** *** 21,25 **** <sellprice>48</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Bustier (N/S)</category> </item> --- 21,25 ---- <sellprice>48</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Bustier (N/S)</category> </item> Index: leather_armor.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_armor.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** leather_armor.xml 25 Aug 2004 17:03:41 -0000 1.13 --- leather_armor.xml 27 Aug 2004 14:43:24 -0000 1.14 *************** *** 21,25 **** <sellprice>58</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Female Leather Armor (N/S)</category> </item> --- 21,25 ---- <sellprice>58</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Female Leather Armor (N/S)</category> </item> Index: leather_cap.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_cap.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** leather_cap.xml 25 Aug 2004 17:03:41 -0000 1.12 --- leather_cap.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 21,25 **** <sellprice>31</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Cap (N/S)</category> </item> --- 21,25 ---- <sellprice>31</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Cap (N/S)</category> </item> Index: leather_skirt.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_skirt.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** leather_skirt.xml 25 Aug 2004 17:03:41 -0000 1.12 --- leather_skirt.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 21,25 **** <sellprice>43</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Skirt (N/S)</category> </item> --- 21,25 ---- <sellprice>43</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Skirt (N/S)</category> </item> Index: leather_tunic.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/armory/leather/leather_tunic.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** leather_tunic.xml 25 Aug 2004 17:03:41 -0000 1.12 --- leather_tunic.xml 27 Aug 2004 14:43:24 -0000 1.13 *************** *** 21,25 **** <sellprice>52</sellprice> <type>1009</type> ! <scripts>equipment</scripts> <category>Armor\Base\Leather\Tunic (N/S)</category> </item> --- 21,25 ---- <sellprice>52</sellprice> <type>1009</type> ! <basescripts>equipment</basescripts> <category>Armor\Base\Leather\Tunic (N/S)</category> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:08
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/professions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/professions Modified Files: alchemist.xml barber.xml blacksmith.xml carpenter.xml cook.xml fisher.xml fletcher.xml healer.xml mage.xml mapmaker.xml miner.xml musician.xml necromancer.xml tailorer.xml thieve.xml tinker.xml Log Message: basescripts property Index: tinker.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/tinker.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** tinker.xml 25 Aug 2004 17:03:47 -0000 1.7 --- tinker.xml 27 Aug 2004 14:43:27 -0000 1.8 *************** *** 73,77 **** <id>0x1057</id> <category>Professions\Tinker\Sextant (W/E)</category> ! <scripts>environment</scripts> </item> --- 73,77 ---- <id>0x1057</id> <category>Professions\Tinker\Sextant (W/E)</category> ! <basescripts>environment</basescripts> </item> *************** *** 79,83 **** <id>0x1058</id> <category>Professions\Tinker\Sextant (N/S)</category> ! <scripts>environment</scripts> </item> --- 79,83 ---- <id>0x1058</id> <category>Professions\Tinker\Sextant (N/S)</category> ! <basescripts>environment</basescripts> </item> *************** *** 85,89 **** <id>0x1059</id> <category>Professions\Tinker\Sextant Parts (W/E)</category> ! <scripts>environment</scripts> </item> --- 85,89 ---- <id>0x1059</id> <category>Professions\Tinker\Sextant Parts (W/E)</category> ! <basescripts>environment</basescripts> </item> *************** *** 91,95 **** <id>0x105a</id> <category>Professions\Tinker\Sextant Parts (N/S)</category> ! <scripts>environment</scripts> </item> --- 91,95 ---- <id>0x105a</id> <category>Professions\Tinker\Sextant Parts (N/S)</category> ! <basescripts>environment</basescripts> </item> *************** *** 160,164 **** <category>Professions\Tinker\Tools\Toolkit 2 (W/E)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>skills.tinkering</scripts> </item> --- 160,164 ---- <category>Professions\Tinker\Tools\Toolkit 2 (W/E)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>skills.tinkering</basescripts> </item> *************** *** 167,171 **** <category>Professions\Tinker\Tools\Toolkit 2 (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>skills.tinkering</scripts> </item> --- 167,171 ---- <category>Professions\Tinker\Tools\Toolkit 2 (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>skills.tinkering</basescripts> </item> *************** *** 174,178 **** <category>Professions\Tinker\Tools\Tinker Tools</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.tinkering</scripts> </item> --- 174,178 ---- <category>Professions\Tinker\Tools\Tinker Tools</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.tinkering</basescripts> </item> Index: mapmaker.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/mapmaker.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** mapmaker.xml 25 Aug 2004 17:03:46 -0000 1.6 --- mapmaker.xml 27 Aug 2004 14:43:27 -0000 1.7 *************** *** 88,92 **** <item id="map_britain" inherit="14eb"> <name>map of Britain</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="britain" /> --- 88,92 ---- <item id="map_britain" inherit="14eb"> <name>map of Britain</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="britain" /> *************** *** 96,100 **** <item id="map_britaintoskarabrae" inherit="14eb"> <name>map of Britain to Skara Brae</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="britaintoskarabrae" /> --- 96,100 ---- <item id="map_britaintoskarabrae" inherit="14eb"> <name>map of Britain to Skara Brae</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="britaintoskarabrae" /> *************** *** 104,108 **** <item id="map_britaintotrinsic" inherit="14eb"> <name>map of Britain to Trinsic</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="britaintotrinsic" /> --- 104,108 ---- <item id="map_britaintotrinsic" inherit="14eb"> <name>map of Britain to Trinsic</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="britaintotrinsic" /> *************** *** 112,116 **** <item id="map_bucsden" inherit="14eb"> <name>map of Buccaneer's Den</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="bucsden" /> --- 112,116 ---- <item id="map_bucsden" inherit="14eb"> <name>map of Buccaneer's Den</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="bucsden" /> *************** *** 120,124 **** <item id="map_bucsdentomagincia" inherit="14eb"> <name>map of Buccaneer's Den to Magincia</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="bucsdentomagincia" /> --- 120,124 ---- <item id="map_bucsdentomagincia" inherit="14eb"> <name>map of Buccaneer's Den to Magincia</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="bucsdentomagincia" /> *************** *** 128,132 **** <item id="map_bucsdentoocllo" inherit="14eb"> <name>map of Buccaneer's Den to Ocllo</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="bucsdentoocllo" /> --- 128,132 ---- <item id="map_bucsdentoocllo" inherit="14eb"> <name>map of Buccaneer's Den to Ocllo</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="bucsdentoocllo" /> *************** *** 136,140 **** <item id="map_jhelom" inherit="14eb"> <name>map of Jhelom</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="jhelom" /> --- 136,140 ---- <item id="map_jhelom" inherit="14eb"> <name>map of Jhelom</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="jhelom" /> *************** *** 144,148 **** <item id="map_magincia" inherit="14eb"> <name>map of Magincia</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="magincia" /> --- 144,148 ---- <item id="map_magincia" inherit="14eb"> <name>map of Magincia</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="magincia" /> *************** *** 152,156 **** <item id="map_maginciatoocllo" inherit="14eb"> <name>map of Magincia to Ocllo</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="maginciatoocllo" /> --- 152,156 ---- <item id="map_maginciatoocllo" inherit="14eb"> <name>map of Magincia to Ocllo</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="maginciatoocllo" /> *************** *** 160,164 **** <item id="map_minoc" inherit="14eb"> <name>map of Minoc</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="minoc" /> --- 160,164 ---- <item id="map_minoc" inherit="14eb"> <name>map of Minoc</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="minoc" /> *************** *** 168,172 **** <item id="map_minoctoyew" inherit="14eb"> <name>map of Minoc to Yew</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="minoctoyew" /> --- 168,172 ---- <item id="map_minoctoyew" inherit="14eb"> <name>map of Minoc to Yew</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="minoctoyew" /> *************** *** 176,180 **** <item id="map_minoctovesper" inherit="14eb"> <name>map of Minoc to Vesper</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="minoctovesper" /> --- 176,180 ---- <item id="map_minoctovesper" inherit="14eb"> <name>map of Minoc to Vesper</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="minoctovesper" /> *************** *** 184,188 **** <item id="map_moonglow" inherit="14eb"> <name>map of Moonglow</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="moonglow" /> --- 184,188 ---- <item id="map_moonglow" inherit="14eb"> <name>map of Moonglow</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="moonglow" /> *************** *** 192,196 **** <item id="map_moonglowtonujelm" inherit="14eb"> <name>map of Moonglow to Nujelm</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="moonglowtonujelm" /> --- 192,196 ---- <item id="map_moonglowtonujelm" inherit="14eb"> <name>map of Moonglow to Nujelm</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="moonglowtonujelm" /> *************** *** 200,204 **** <item id="map_nujelm" inherit="14eb"> <name>map of Nujelm</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="nujelm" /> --- 200,204 ---- <item id="map_nujelm" inherit="14eb"> <name>map of Nujelm</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="nujelm" /> *************** *** 208,212 **** <item id="map_nujelmtomagincia" inherit="14eb"> <name>map of Nujelm to Magincia</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="nujelmtomagincia" /> --- 208,212 ---- <item id="map_nujelmtomagincia" inherit="14eb"> <name>map of Nujelm to Magincia</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="nujelmtomagincia" /> *************** *** 216,220 **** <item id="map_occlo" inherit="14eb"> <name>map of Ocllo</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="occlo" /> --- 216,220 ---- <item id="map_occlo" inherit="14eb"> <name>map of Ocllo</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="occlo" /> *************** *** 224,228 **** <item id="map_serpentshold" inherit="14eb"> <name>map of Serpent's Hold</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="serpentshold" /> --- 224,228 ---- <item id="map_serpentshold" inherit="14eb"> <name>map of Serpent's Hold</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="serpentshold" /> *************** *** 232,236 **** <item id="map_serpentsholdtoocllo" inherit="14eb"> <name>map of Serpent's Hold to Ocllo</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="serpentsholdtoocllo" /> --- 232,236 ---- <item id="map_serpentsholdtoocllo" inherit="14eb"> <name>map of Serpent's Hold to Ocllo</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="serpentsholdtoocllo" /> *************** *** 240,244 **** <item id="map_skarabrae" inherit="14eb"> <name>map of Skara Brae</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="skarabrae" /> --- 240,244 ---- <item id="map_skarabrae" inherit="14eb"> <name>map of Skara Brae</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="skarabrae" /> *************** *** 248,252 **** <item id="map_world" inherit="14eb"> <name>map of The World</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="world" /> --- 248,252 ---- <item id="map_world" inherit="14eb"> <name>map of The World</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="world" /> *************** *** 256,260 **** <item id="map_trinsic" inherit="14eb"> <name>map of Trinsic</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="trinsic" /> --- 256,260 ---- <item id="map_trinsic" inherit="14eb"> <name>map of Trinsic</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="trinsic" /> *************** *** 264,268 **** <item id="map_trinsictobucsden" inherit="14eb"> <name>map of Trinsic to Buccaneer's Den</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="trinsictobucsden" /> --- 264,268 ---- <item id="map_trinsictobucsden" inherit="14eb"> <name>map of Trinsic to Buccaneer's Den</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="trinsictobucsden" /> *************** *** 272,276 **** <item id="map_trinsictojhelom" inherit="14eb"> <name>map of Trinsic to Jhelom</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="trinsictojhelom" /> --- 272,276 ---- <item id="map_trinsictojhelom" inherit="14eb"> <name>map of Trinsic to Jhelom</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="trinsictojhelom" /> *************** *** 280,284 **** <item id="map_vesper" inherit="14eb"> <name>map of Vesper</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="vesper" /> --- 280,284 ---- <item id="map_vesper" inherit="14eb"> <name>map of Vesper</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="vesper" /> *************** *** 288,292 **** <item id="map_vespertonujelm" inherit="14eb"> <name>map of Vesper to Nujelm</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="vespertonujelm" /> --- 288,292 ---- <item id="map_vespertonujelm" inherit="14eb"> <name>map of Vesper to Nujelm</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="vespertonujelm" /> *************** *** 296,300 **** <item id="map_yew" inherit="14eb"> <name>map of Yew</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="yew" /> --- 296,300 ---- <item id="map_yew" inherit="14eb"> <name>map of Yew</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="yew" /> *************** *** 304,308 **** <item id="map_yewtobritain" inherit="14eb"> <name>map of Yew to Britain</name> ! <scripts>map</scripts> <tag name="type" value="preset" /> <tag name="preset" value="yewtobritain" /> --- 304,308 ---- <item id="map_yewtobritain" inherit="14eb"> <name>map of Yew to Britain</name> ! <basescripts>map</basescripts> <tag name="type" value="preset" /> <tag name="preset" value="yewtobritain" /> Index: carpenter.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/carpenter.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** carpenter.xml 25 Aug 2004 17:03:46 -0000 1.9 --- carpenter.xml 27 Aug 2004 14:43:27 -0000 1.10 *************** *** 34,38 **** <category>Professions\Carpenter\Tools\Vise (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 34,38 ---- <category>Professions\Carpenter\Tools\Vise (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 252,256 **** <category>Professions\Carpenter\Tools\Chisels (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 252,256 ---- <category>Professions\Carpenter\Tools\Chisels (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 266,270 **** <category>Professions\Carpenter\Tools\Dovetail Saw (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 266,270 ---- <category>Professions\Carpenter\Tools\Dovetail Saw (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 280,284 **** <category>Professions\Carpenter\Tools\Hammer 1</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 280,284 ---- <category>Professions\Carpenter\Tools\Hammer 1</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 294,298 **** <category>Professions\Carpenter\Tools\Moulding Planes (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 294,298 ---- <category>Professions\Carpenter\Tools\Moulding Planes (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 306,310 **** <category>Professions\Carpenter\Tools\Nails (W/E)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 306,310 ---- <category>Professions\Carpenter\Tools\Nails (W/E)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 320,324 **** <category>Professions\Carpenter\Tools\Jointing Plane (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 320,324 ---- <category>Professions\Carpenter\Tools\Jointing Plane (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 334,338 **** <category>Professions\Carpenter\Tools\Smoothing Plane (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 334,338 ---- <category>Professions\Carpenter\Tools\Smoothing Plane (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 348,352 **** <category>Professions\Carpenter\Tools\Saw (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 348,352 ---- <category>Professions\Carpenter\Tools\Saw (N/S)</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 362,366 **** <category>Professions\Carpenter\Draw Knife</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 362,366 ---- <category>Professions\Carpenter\Draw Knife</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 371,375 **** <category>Professions\Carpenter\Tools\Froe</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 371,375 ---- <category>Professions\Carpenter\Tools\Froe</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 380,384 **** <category>Professions\Carpenter\Tools\Inshave</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 380,384 ---- <category>Professions\Carpenter\Tools\Inshave</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> *************** *** 389,393 **** <category>Professions\Carpenter\Tools\Scorp</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>equipment,skills.carpentry</scripts> </item> --- 389,393 ---- <category>Professions\Carpenter\Tools\Scorp</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>equipment,skills.carpentry</basescripts> </item> Index: healer.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/healer.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** healer.xml 25 Aug 2004 17:03:46 -0000 1.7 --- healer.xml 27 Aug 2004 14:43:27 -0000 1.8 *************** *** 14,18 **** <id>0xe20</id> <category>Professions\Healer\Bloody Bandages 2</category> ! <scripts>bandages</scripts> </item> --- 14,18 ---- <id>0xe20</id> <category>Professions\Healer\Bloody Bandages 2</category> ! <basescripts>bandages</basescripts> </item> *************** *** 20,24 **** <id>0xe21</id> <category>Professions\Healer\Clean Bandages 2</category> ! <scripts>bandages</scripts> </item> --- 20,24 ---- <id>0xe21</id> <category>Professions\Healer\Clean Bandages 2</category> ! <basescripts>bandages</basescripts> </item> *************** *** 26,30 **** <id>0xe22</id> <category>Professions\Healer\Bloody Bandages 1</category> ! <scripts>bandages</scripts> </item> --- 26,30 ---- <id>0xe22</id> <category>Professions\Healer\Bloody Bandages 1</category> ! <basescripts>bandages</basescripts> </item> *************** *** 32,36 **** <id>0xee9</id> <category>Professions\Healer\Clean Bandages 1</category> ! <scripts>bandages</scripts> </item> --- 32,36 ---- <id>0xee9</id> <category>Professions\Healer\Clean Bandages 1</category> ! <basescripts>bandages</basescripts> </item> Index: thieve.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/thieve.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** thieve.xml 25 Aug 2004 17:03:47 -0000 1.6 --- thieve.xml 27 Aug 2004 14:43:27 -0000 1.7 *************** *** 14,18 **** <id>0x14fb</id> <category>Professions\Thieve\Lockpick (W/E)</category> ! <scripts>lockpick</scripts> </item> --- 14,18 ---- <id>0x14fb</id> <category>Professions\Thieve\Lockpick (W/E)</category> ! <basescripts>lockpick</basescripts> </item> *************** *** 26,30 **** <id>0x14fd</id> <category>Professions\Thieve\Lockpicks (W/E)</category> ! <scripts>lockpick</scripts> </item> --- 26,30 ---- <id>0x14fd</id> <category>Professions\Thieve\Lockpicks (W/E)</category> ! <basescripts>lockpick</basescripts> </item> *************** *** 42,46 **** <item id="1ec1"> <id>0x1ec1</id> ! <scripts>pickpocket_dip</scripts> <category>Professions\Thieve\Pickpocket Dip (Animated)</category> </item> --- 42,46 ---- <item id="1ec1"> <id>0x1ec1</id> ! <basescripts>pickpocket_dip</basescripts> <category>Professions\Thieve\Pickpocket Dip (Animated)</category> </item> Index: mage.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/mage.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** mage.xml 25 Aug 2004 17:03:46 -0000 1.14 --- mage.xml 27 Aug 2004 14:43:27 -0000 1.15 *************** *** 31,35 **** <value>30</value> <category>Professions\Mage\Spellbook (N/S)</category> ! <scripts>magic.spellbook</scripts> </item> --- 31,35 ---- <value>30</value> <category>Professions\Mage\Spellbook (N/S)</category> ! <basescripts>magic.spellbook</basescripts> </item> *************** *** 44,48 **** <sellprice>1250</sellprice> <category>Professions\Mage\Runebook </category> ! <scripts>magic.runebook</scripts> </item> --- 44,48 ---- <sellprice>1250</sellprice> <category>Professions\Mage\Runebook </category> ! <basescripts>magic.runebook</basescripts> </item> *************** *** 55,59 **** <buyprice>15</buyprice> <sellprice>8</sellprice> ! <scripts>magic.rune</scripts> </item> --- 55,59 ---- <buyprice>15</buyprice> <sellprice>8</sellprice> ! <basescripts>magic.rune</basescripts> </item> *************** *** 82,86 **** <id>0x1f2e</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 82,86 ---- <id>0x1f2e</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 94,98 **** <id>0x1f2f</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 94,98 ---- <id>0x1f2f</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 106,110 **** <id>0x1f30</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 106,110 ---- <id>0x1f30</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 118,122 **** <id>0x1f31</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 118,122 ---- <id>0x1f31</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 130,134 **** <id>0x1f32</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 130,134 ---- <id>0x1f32</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 142,146 **** <id>0x1f33</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 142,146 ---- <id>0x1f33</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 154,158 **** <id>0x1f2d</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 154,158 ---- <id>0x1f2d</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 166,170 **** <id>0x1f34</id> <decay/> ! <scripts>magic.scroll</scripts> <value>15</value> <buyprice>12</buyprice> --- 166,170 ---- <id>0x1f34</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>15</value> <buyprice>12</buyprice> *************** *** 178,182 **** <id>0x1f35</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 178,182 ---- <id>0x1f35</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 190,194 **** <id>0x1f36</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 190,194 ---- <id>0x1f36</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 202,206 **** <id>0x1f37</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 202,206 ---- <id>0x1f37</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 214,218 **** <id>0x1f38</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 214,218 ---- <id>0x1f38</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 226,230 **** <id>0x1f39</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 226,230 ---- <id>0x1f39</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 238,242 **** <id>0x1f3a</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 238,242 ---- <id>0x1f3a</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 250,254 **** <id>0x1f3b</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 250,254 ---- <id>0x1f3b</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 262,266 **** <id>0x1f3c</id> <decay/> ! <scripts>magic.scroll</scripts> <value>30</value> <buyprice>22</buyprice> --- 262,266 ---- <id>0x1f3c</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>30</value> <buyprice>22</buyprice> *************** *** 274,278 **** <id>0x1f3d</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 274,278 ---- <id>0x1f3d</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 286,290 **** <id>0x1f3e</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 286,290 ---- <id>0x1f3e</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 298,302 **** <id>0x1f3f</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 298,302 ---- <id>0x1f3f</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 310,314 **** <id>0x1f40</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 310,314 ---- <id>0x1f40</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 322,326 **** <id>0x1f41</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 322,326 ---- <id>0x1f41</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 334,338 **** <id>0x1f42</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 334,338 ---- <id>0x1f42</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 346,350 **** <id>0x1f43</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 346,350 ---- <id>0x1f43</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 358,362 **** <id>0x1f44</id> <decay/> ! <scripts>magic.scroll</scripts> <value>45</value> <buyprice>32</buyprice> --- 358,362 ---- <id>0x1f44</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>45</value> <buyprice>32</buyprice> *************** *** 370,374 **** <id>0x1f45</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 370,374 ---- <id>0x1f45</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 382,386 **** <id>0x1f46</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 382,386 ---- <id>0x1f46</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 394,398 **** <id>0x1f47</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 394,398 ---- <id>0x1f47</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 406,410 **** <id>0x1f48</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 406,410 ---- <id>0x1f48</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 418,422 **** <id>0x1f49</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 418,422 ---- <id>0x1f49</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 430,434 **** <id>0x1f4a</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 430,434 ---- <id>0x1f4a</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 442,446 **** <id>0x1f4b</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 442,446 ---- <id>0x1f4b</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 454,458 **** <id>0x1f4c</id> <decay/> ! <scripts>magic.scroll</scripts> <value>60</value> <buyprice>42</buyprice> --- 454,458 ---- <id>0x1f4c</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>60</value> <buyprice>42</buyprice> *************** *** 466,470 **** <id>0x1f4d</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 466,470 ---- <id>0x1f4d</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 478,482 **** <id>0x1f4e</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 478,482 ---- <id>0x1f4e</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 490,494 **** <id>0x1f4f</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 490,494 ---- <id>0x1f4f</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 502,506 **** <id>0x1f50</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 502,506 ---- <id>0x1f50</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 514,518 **** <id>0x1f51</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 514,518 ---- <id>0x1f51</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 526,530 **** <id>0x1f52</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 526,530 ---- <id>0x1f52</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 538,542 **** <id>0x1f53</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 538,542 ---- <id>0x1f53</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 550,554 **** <id>0x1f54</id> <decay/> ! <scripts>magic.scroll</scripts> <value>75</value> <buyprice>52</buyprice> --- 550,554 ---- <id>0x1f54</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>75</value> <buyprice>52</buyprice> *************** *** 562,566 **** <id>0x1f55</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 562,566 ---- <id>0x1f55</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 574,578 **** <id>0x1f56</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 574,578 ---- <id>0x1f56</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 586,590 **** <id>0x1f57</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 586,590 ---- <id>0x1f57</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 598,602 **** <id>0x1f58</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 598,602 ---- <id>0x1f58</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 610,614 **** <id>0x1f59</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 610,614 ---- <id>0x1f59</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 622,626 **** <id>0x1f5a</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 622,626 ---- <id>0x1f5a</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 634,638 **** <id>0x1f5b</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 634,638 ---- <id>0x1f5b</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 646,650 **** <id>0x1f5c</id> <decay/> ! <scripts>magic.scroll</scripts> <value>90</value> <buyprice>62</buyprice> --- 646,650 ---- <id>0x1f5c</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>90</value> <buyprice>62</buyprice> *************** *** 658,662 **** <id>0x1f5d</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 658,662 ---- <id>0x1f5d</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 670,674 **** <id>0x1f5e</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 670,674 ---- <id>0x1f5e</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 682,686 **** <id>0x1f5f</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 682,686 ---- <id>0x1f5f</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 694,698 **** <id>0x1f60</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 694,698 ---- <id>0x1f60</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 706,710 **** <id>0x1f61</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 706,710 ---- <id>0x1f61</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 718,722 **** <id>0x1f62</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 718,722 ---- <id>0x1f62</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 730,734 **** <id>0x1f63</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 730,734 ---- <id>0x1f63</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 742,746 **** <id>0x1f64</id> <decay/> ! <scripts>magic.scroll</scripts> <value>105</value> <buyprice>72</buyprice> --- 742,746 ---- <id>0x1f64</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>105</value> <buyprice>72</buyprice> *************** *** 754,758 **** <id>0x1f65</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 754,758 ---- <id>0x1f65</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 766,770 **** <id>0x1f66</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 766,770 ---- <id>0x1f66</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 778,782 **** <id>0x1f67</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 778,782 ---- <id>0x1f67</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 790,794 **** <id>0x1f68</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 790,794 ---- <id>0x1f68</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 802,806 **** <id>0x1f69</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 802,806 ---- <id>0x1f69</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 814,818 **** <id>0x1f6a</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 814,818 ---- <id>0x1f6a</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 826,830 **** <id>0x1f6b</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 826,830 ---- <id>0x1f6b</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 838,842 **** <id>0x1f6c</id> <decay/> ! <scripts>magic.scroll</scripts> <value>120</value> <buyprice>82</buyprice> --- 838,842 ---- <id>0x1f6c</id> <decay/> ! <basescripts>magic.scroll</basescripts> <value>120</value> <buyprice>82</buyprice> *************** *** 980,984 **** <id>0xfbf</id> <category>Professions\Mage\Pen & Ink (N/S)</category> ! <scripts>skills.inscription</scripts> <weight>1.0</weight> </item> --- 980,984 ---- <id>0xfbf</id> <category>Professions\Mage\Pen & Ink (N/S)</category> ! <basescripts>skills.inscription</basescripts> <weight>1.0</weight> </item> Index: fisher.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/fisher.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** fisher.xml 25 Aug 2004 17:03:46 -0000 1.8 --- fisher.xml 27 Aug 2004 14:43:27 -0000 1.9 *************** *** 173,177 **** <category>Professions\Fisher\Tools\Fishing Pole (N/S)</category> <tag name="remaining_uses" type="int" value="50" /> ! <scripts>skills.fishing</scripts> </item> --- 173,177 ---- <category>Professions\Fisher\Tools\Fishing Pole (N/S)</category> <tag name="remaining_uses" type="int" value="50" /> ! <basescripts>skills.fishing</basescripts> </item> Index: miner.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/miner.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** miner.xml 25 Aug 2004 17:03:47 -0000 1.17 --- miner.xml 27 Aug 2004 14:43:27 -0000 1.18 *************** *** 340,344 **** <category>Professions\Miner\Ore\Merkite\Merkite Ore 1</category> <tag name="resname" value="merkite" /> ! <scripts>ore</scripts> <type>1102</type> </item> --- 340,344 ---- <category>Professions\Miner\Ore\Merkite\Merkite Ore 1</category> <tag name="resname" value="merkite" /> ! <basescripts>ore</basescripts> <type>1102</type> </item> *************** *** 356,360 **** <id>0x19b7</id> <category>Professions\Miner\Ore\Ore 1</category> ! <scripts>ore</scripts> <type>1102</type> </item> --- 356,360 ---- <id>0x19b7</id> <category>Professions\Miner\Ore\Ore 1</category> ! <basescripts>ore</basescripts> <type>1102</type> </item> *************** *** 469,473 **** <category>Professions\Miner\Ingots\Iron Ingot (N/S)</category> <tag name="resname" value="iron" /> ! <scripts>ingot</scripts> <weight>1.0</weight> </item> --- 469,473 ---- <category>Professions\Miner\Ingots\Iron Ingot (N/S)</category> <tag name="resname" value="iron" /> ! <basescripts>ingot</basescripts> <weight>1.0</weight> </item> *************** *** 535,539 **** <tag name="remaining_uses" type="int" value="35" /> <decay/> ! <scripts>equipment,pickaxe</scripts> <category>Professions\Miner\Tools\Shovel (E/W)</category> </item> --- 535,539 ---- <tag name="remaining_uses" type="int" value="35" /> <decay/> ! <basescripts>equipment,pickaxe</basescripts> <category>Professions\Miner\Tools\Shovel (E/W)</category> </item> Index: tailorer.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/tailorer.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** tailorer.xml 25 Aug 2004 17:03:47 -0000 1.13 --- tailorer.xml 27 Aug 2004 14:43:27 -0000 1.14 *************** *** 236,240 **** <id>0xdf8</id> <category>Professions\Tailorer\Resources\Pile of Wool 1</category> ! <scripts>wool</scripts> </item> --- 236,240 ---- <id>0xdf8</id> <category>Professions\Tailorer\Resources\Pile of Wool 1</category> ! <basescripts>wool</basescripts> </item> *************** *** 242,246 **** <id>0x101f</id> <category>Professions\Tailorer\Resources\Pile of Wool 2</category> ! <scripts>wool</scripts> </item> --- 242,246 ---- <id>0x101f</id> <category>Professions\Tailorer\Resources\Pile of Wool 2</category> ! <basescripts>wool</basescripts> </item> *************** *** 249,253 **** <id>0xe1d</id> <category>Professions\Tailorer\Resources\Ball of Yarn 1</category> ! <scripts>yarn</scripts> </item> --- 249,253 ---- <id>0xe1d</id> <category>Professions\Tailorer\Resources\Ball of Yarn 1</category> ! <basescripts>yarn</basescripts> </item> *************** *** 255,259 **** <id>0xe1e</id> <category>Professions\Tailorer\Resources\Ball of Yarn 2</category> ! <scripts>yarn</scripts> </item> --- 255,259 ---- <id>0xe1e</id> <category>Professions\Tailorer\Resources\Ball of Yarn 2</category> ! <basescripts>yarn</basescripts> </item> *************** *** 261,265 **** <id>0xe1f</id> <category>Professions\Tailorer\Resources\Ball of Yarn 3</category> ! <scripts>yarn</scripts> </item> --- 261,265 ---- <id>0xe1f</id> <category>Professions\Tailorer\Resources\Ball of Yarn 3</category> ! <basescripts>yarn</basescripts> </item> *************** *** 309,313 **** <category>Professions\Tailorer\Sewing Kit</category> <tag name="remaining_uses" type="int" value="35" /> ! <scripts>skills.tailoring,equipment</scripts> </item> --- 309,313 ---- <category>Professions\Tailorer\Sewing Kit</category> <tag name="remaining_uses" type="int" value="35" /> ! <basescripts>skills.tailoring,equipment</basescripts> </item> *************** *** 315,319 **** <id>0xf9e</id> <category>Professions\Tailorer\Scissors (N/S)</category> ! <scripts>scissors</scripts> </item> --- 315,319 ---- <id>0xf9e</id> <category>Professions\Tailorer\Scissors (N/S)</category> ! <basescripts>scissors</basescripts> </item> *************** *** 327,331 **** <id>0xfa0</id> <category>Professions\Tailorer\Resources\Spool of Thread (N/S)</category> ! <scripts>yarn</scripts> </item> --- 327,331 ---- <id>0xfa0</id> <category>Professions\Tailorer\Resources\Spool of Thread (N/S)</category> ! <basescripts>yarn</basescripts> </item> *************** *** 333,337 **** <id>0xfa1</id> <category>Professions\Tailorer\Resources\Spool of Thread (W/E)</category> ! <scripts>yarn</scripts> </item> --- 333,337 ---- <id>0xfa1</id> <category>Professions\Tailorer\Resources\Spool of Thread (W/E)</category> ! <basescripts>yarn</basescripts> </item> *************** *** 340,344 **** <category>Professions\Tailorer\Dyes</category> <tag name="remaining_uses" type="int" value="10" /> ! <scripts>dyes</scripts> </item> --- 340,344 ---- <category>Professions\Tailorer\Dyes</category> <tag name="remaining_uses" type="int" value="10" /> ! <basescripts>dyes</basescripts> </item> *************** *** 346,350 **** <id>0xfab</id> <category>Professions\Tailorer\Dying Tub</category> ! <scripts>environment</scripts> </item> --- 346,350 ---- <id>0xfab</id> <category>Professions\Tailorer\Dying Tub</category> ! <basescripts>environment</basescripts> </item> Index: alchemist.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/alchemist.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** alchemist.xml 25 Aug 2004 17:03:45 -0000 1.16 --- alchemist.xml 27 Aug 2004 14:43:27 -0000 1.17 *************** *** 30,34 **** <name>hair dye</name> <category>Professions\Alchemist\Hair Dye 1</category> ! <scripts>environment</scripts> </item> --- 30,34 ---- <name>hair dye</name> <category>Professions\Alchemist\Hair Dye 1</category> ! <basescripts>environment</basescripts> </item> *************** *** 142,146 **** <name>hair dye</name> <category>Professions\Alchemist\Hair Dye 2</category> ! <scripts>environment</scripts> </item> --- 142,146 ---- <name>hair dye</name> <category>Professions\Alchemist\Hair Dye 2</category> ! <basescripts>environment</basescripts> </item> *************** *** 495,499 **** <tag name="remaining_uses" type="int" value="50" /> <type>1107</type> ! <scripts>equipment,skills.alchemy</scripts> </item> --- 495,499 ---- <tag name="remaining_uses" type="int" value="50" /> <type>1107</type> ! <basescripts>equipment,skills.alchemy</basescripts> </item> *************** *** 512,516 **** <buyprice>15</buyprice> <sellprice>7</sellprice> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 512,516 ---- <buyprice>15</buyprice> <sellprice>7</sellprice> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 521,525 **** <category>Professions\Alchemist\Potions\Orange Potion</category> <tag name="potiontype" value="4,6" type="int" /> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 521,525 ---- <category>Professions\Alchemist\Potions\Orange Potion</category> <tag name="potiontype" value="4,6" type="int" /> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 530,534 **** <category>Professions\Alchemist\Potions\Blue Potion</category> <tag name="potiontype" value="7,8" type="int" /> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 530,534 ---- <category>Professions\Alchemist\Potions\Blue Potion</category> <tag name="potiontype" value="7,8" type="int" /> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 539,543 **** <category>Professions\Alchemist\Potions\White Potion</category> <tag name="potiontype" value="9,10" type="int" /> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 539,543 ---- <category>Professions\Alchemist\Potions\White Potion</category> <tag name="potiontype" value="9,10" type="int" /> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 549,553 **** <tag name="potiontype" value="14,16" type="int" /> <!-- Lesser to greater, we don't want people buying deadly. --> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 549,553 ---- <tag name="potiontype" value="14,16" type="int" /> <!-- Lesser to greater, we don't want people buying deadly. --> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 558,562 **** <category>Professions\Alchemist\Potions\Red Potion</category> <tag name="potiontype" value="18,19" type="int" /> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 558,562 ---- <category>Professions\Alchemist\Potions\Red Potion</category> <tag name="potiontype" value="18,19" type="int" /> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 567,571 **** <category>Professions\Alchemist\Potions\Yellow Potion</category> <tag name="potiontype" value="1,3" type="int" /> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 567,571 ---- <category>Professions\Alchemist\Potions\Yellow Potion</category> <tag name="potiontype" value="1,3" type="int" /> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 577,581 **** <tag name="potiontype" value="11,12" type="int" /> <!-- Lesser to normal explosion, greater is craft only. --> ! <scripts>potions</scripts> <weight>0.5</weight> </item> --- 577,581 ---- <tag name="potiontype" value="11,12" type="int" /> <!-- Lesser to normal explosion, greater is craft only. --> ! <basescripts>potions</basescripts> <weight>0.5</weight> </item> *************** *** 585,589 **** <id>0x1940</id> <weight>1.0</weight> ! <scripts>potionkeg</scripts> <movable /> <!-- Always movable --> </item> --- 585,589 ---- <id>0x1940</id> <weight>1.0</weight> ! <basescripts>potionkeg</basescripts> <movable /> <!-- Always movable --> </item> Index: barber.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/barber.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** barber.xml 25 Aug 2004 17:03:46 -0000 1.4 --- barber.xml 27 Aug 2004 14:43:27 -0000 1.5 *************** *** 109,113 **** <id>0x14f0</id> <category>Professions\Barber\Hairstyle Deed</category> ! <scripts>deeds.hairstyle</scripts> </item> --- 109,113 ---- <id>0x14f0</id> <category>Professions\Barber\Hairstyle Deed</category> ! <basescripts>deeds.hairstyle</basescripts> </item> Index: necromancer.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/necromancer.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** necromancer.xml 25 Aug 2004 17:03:47 -0000 1.3 --- necromancer.xml 27 Aug 2004 14:43:27 -0000 1.4 *************** *** 20,24 **** <value>30</value> <category>Professions\Necromancer\Spellbook</category> ! <scripts>magic.necrospellbook</scripts> </item> </definitions> --- 20,24 ---- <value>30</value> <category>Professions\Necromancer\Spellbook</category> ! <basescripts>magic.necrospellbook</basescripts> </item> </definitions> Index: blacksmith.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/blacksmith.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** blacksmith.xml 25 Aug 2004 17:03:46 -0000 1.11 --- blacksmith.xml 27 Aug 2004 14:43:27 -0000 1.12 *************** *** 43,47 **** <item id="fbb"> <id>0xfbb</id> ! <scripts>skills.blacksmithing,equipment</scripts> <category>Professions\Blacksmith\Tongs (W/E)</category> <tag name="remaining_uses" type="int" value="35" /> --- 43,47 ---- <item id="fbb"> <id>0xfbb</id> ! <basescripts>skills.blacksmithing,equipment</basescripts> <category>Professions\Blacksmith\Tongs (W/E)</category> <tag name="remaining_uses" type="int" value="35" /> Index: cook.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/professions/cook.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cook.xml 25 Aug 2004 17:03:46 -0000 1.5 --- cook.xml 27 Aug 2004 14:43:27 -0000 1.6 *************** *** 401,405 **** <sellprice>4</sellprice> <weight>0.4</weight> ! <scripts>cooking</scripts> </item> --- 401,405 ---- <sellprice>4</sellprice> <weight>0.4</weight> ! <basescripts>cooking</basescripts> </item> *************** *** 456,460 **** <weight>0.1</weight> <category>Professions\Cook\Supplies\Cookie Mix</category> ! <scripts>cooking</scripts> </item> --- 456,460 ---- <weight>0.1</weight> <category>Professions\Cook\Supplies\Cookie Mix</category> ! <basescripts>cooking</basescripts> </item> *************** *** 463,467 **** <weight>0.1</weight> <category>Professions\Cook\Supplies\Unbaked Pie</category> ! <scripts>cooking</scripts> </item> --- 463,467 ---- <weight>0.1</weight> <category>Professions\Cook\Supplies\Unbaked Pie</category> ! <basescripts>cooking</basescripts> </item> *************** *** 470,474 **** <weight>0.1</weight> <category>Professions\Cook\Supplies\Unbaked Pizza</category> ! <sc... [truncated message content] |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:08
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/misc Modified Files: deeds.xml misc.xml Log Message: basescripts property Index: misc.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/misc/misc.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** misc.xml 25 Aug 2004 17:03:45 -0000 1.15 --- misc.xml 27 Aug 2004 14:43:27 -0000 1.16 *************** *** 148,152 **** <id>0x100a</id> <nodecay /> ! <scripts>archery_butte</scripts> <category>Misc\Archery Butte\Archery Butte (W/E)</category> </item> --- 148,152 ---- <id>0x100a</id> <nodecay /> ! <basescripts>archery_butte</basescripts> <category>Misc\Archery Butte\Archery Butte (W/E)</category> </item> *************** *** 163,167 **** <type>7</type> <category>Misc\Keys\Copper Key</category> ! <scripts>key</scripts> </item> --- 163,167 ---- <type>7</type> <category>Misc\Keys\Copper Key</category> ! <basescripts>key</basescripts> </item> *************** *** 170,174 **** <type>7</type> <category>Misc\Keys\Gold Key</category> ! <scripts>key</scripts> </item> --- 170,174 ---- <type>7</type> <category>Misc\Keys\Gold Key</category> ! <basescripts>key</basescripts> </item> *************** *** 177,181 **** <type>7</type> <category>Misc\Keys\Iron Key</category> ! <scripts>key</scripts> </item> --- 177,181 ---- <type>7</type> <category>Misc\Keys\Iron Key</category> ! <basescripts>key</basescripts> </item> *************** *** 183,187 **** <id>0x1011</id> <category>Misc\Keys\Keyring 1</category> ! <scripts>keyring</scripts> </item> --- 183,187 ---- <id>0x1011</id> <category>Misc\Keys\Keyring 1</category> ! <basescripts>keyring</basescripts> </item> *************** *** 189,193 **** <id>0x1769</id> <category>Misc\Keys\Keyring 2</category> ! <scripts>keyring</scripts> </item> --- 189,193 ---- <id>0x1769</id> <category>Misc\Keys\Keyring 2</category> ! <basescripts>keyring</basescripts> </item> *************** *** 195,199 **** <id>0x176a</id> <category>Misc\Keys\Keyring 3</category> ! <scripts>keyring</scripts> </item> --- 195,199 ---- <id>0x176a</id> <category>Misc\Keys\Keyring 3</category> ! <basescripts>keyring</basescripts> </item> *************** *** 201,205 **** <id>0x176b</id> <category>Misc\Keys\Keyring 4</category> ! <scripts>keyring</scripts> </item> --- 201,205 ---- <id>0x176b</id> <category>Misc\Keys\Keyring 4</category> ! <basescripts>keyring</basescripts> </item> *************** *** 208,212 **** <type>7</type> <category>Misc\Keys\Magic Key</category> ! <scripts>key</scripts> </item> --- 208,212 ---- <type>7</type> <category>Misc\Keys\Magic Key</category> ! <basescripts>key</basescripts> </item> *************** *** 215,219 **** <type>7</type> <category>Misc\Keys\Rusty Iron Key</category> ! <scripts>key</scripts> </item> --- 215,219 ---- <type>7</type> <category>Misc\Keys\Rusty Iron Key</category> ! <basescripts>key</basescripts> </item> *************** *** 223,227 **** <nodecay /> <category>Misc\Training Dummy\Training Dummy (N/S)</category> ! <scripts>training_dummy</scripts> </item> --- 223,227 ---- <nodecay /> <category>Misc\Training Dummy\Training Dummy (N/S)</category> ! <basescripts>training_dummy</basescripts> </item> *************** *** 230,234 **** <nodecay /> <category>Misc\Training Dummy\Training Dummy (W/E)</category> ! <scripts>training_dummy</scripts> </item> --- 230,234 ---- <nodecay /> <category>Misc\Training Dummy\Training Dummy (W/E)</category> ! <basescripts>training_dummy</basescripts> </item> *************** *** 1993,1997 **** <id>0x1e5e</id> <category>Misc\Message Boards\Message Board (N/S)</category> ! <scripts>bulletinboard</scripts> <nodecay /> </item> --- 1993,1997 ---- <id>0x1e5e</id> <category>Misc\Message Boards\Message Board (N/S)</category> ! <basescripts>bulletinboard</basescripts> <nodecay /> </item> *************** *** 2000,2004 **** <id>0x1e5f</id> <category>Misc\Message Boards\Message Board (W/E)</category> ! <scripts>bulletinboard</scripts> <nodecay /> </item> --- 2000,2004 ---- <id>0x1e5f</id> <category>Misc\Message Boards\Message Board (W/E)</category> ! <basescripts>bulletinboard</basescripts> <nodecay /> </item> *************** *** 2121,2125 **** <id>0xedd</id> <category>Misc\Guilds\Guildstone</category> ! <scripts>guilds.stone</scripts> </item> --- 2121,2125 ---- <id>0xedd</id> <category>Misc\Guilds\Guildstone</category> ! <basescripts>guilds.stone</basescripts> </item> Index: deeds.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/misc/deeds.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** deeds.xml 25 Aug 2004 17:03:45 -0000 1.9 --- deeds.xml 27 Aug 2004 14:43:27 -0000 1.10 *************** *** 20,24 **** <item id="ballot_box_deed" inherit="blank_deed"> <name>Ballot Box Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="ballot_box" /> <category>Misc\Deeds\Carpentry\Ballot Box Deed</category> --- 20,24 ---- <item id="ballot_box_deed" inherit="blank_deed"> <name>Ballot Box Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="ballot_box" /> <category>Misc\Deeds\Carpentry\Ballot Box Deed</category> *************** *** 28,32 **** <item id="small_bed_s_deed" inherit="blank_deed"> <name>Small Bed South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="small_bed_s" /> <category>Misc\Deeds\Carpentry\Small Bed South Deed</category> --- 28,32 ---- <item id="small_bed_s_deed" inherit="blank_deed"> <name>Small Bed South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="small_bed_s" /> <category>Misc\Deeds\Carpentry\Small Bed South Deed</category> *************** *** 42,46 **** <item id="large_bed_s_deed" inherit="blank_deed"> <name>Large Bed South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="large_bed_s" /> <category>Misc\Deeds\Carpentry\Small Bed South Deed</category> --- 42,46 ---- <item id="large_bed_s_deed" inherit="blank_deed"> <name>Large Bed South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="large_bed_s" /> <category>Misc\Deeds\Carpentry\Small Bed South Deed</category> *************** *** 56,60 **** <item id="dart_board_s_deed" inherit="blank_deed"> <name>Dart Board South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="dart_board_s" /> <category>Misc\Deeds\Carpentry\Dart Board South Deed</category> --- 56,60 ---- <item id="dart_board_s_deed" inherit="blank_deed"> <name>Dart Board South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="dart_board_s" /> <category>Misc\Deeds\Carpentry\Dart Board South Deed</category> *************** *** 70,74 **** <item id="pentagram_deed" inherit="blank_deed"> <name>Pentagram Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="pentagram" /> <category>Misc\Deeds\Carpentry\Pentagram Deed</category> --- 70,74 ---- <item id="pentagram_deed" inherit="blank_deed"> <name>Pentagram Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="pentagram" /> <category>Misc\Deeds\Carpentry\Pentagram Deed</category> *************** *** 78,82 **** <item id="arbattoir_deed" inherit="blank_deed"> <name>Arbattoir Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="arbattoir" /> <category>Misc\Deeds\Carpentry\Arbattoir Deed</category> --- 78,82 ---- <item id="arbattoir_deed" inherit="blank_deed"> <name>Arbattoir Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="arbattoir" /> <category>Misc\Deeds\Carpentry\Arbattoir Deed</category> *************** *** 86,90 **** <item id="anvil_s_deed" inherit="blank_deed"> <name>Anvil South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="anvil_s" /> <category>Misc\Deeds\Carpentry\Anvil South Deed</category> --- 86,90 ---- <item id="anvil_s_deed" inherit="blank_deed"> <name>Anvil South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="anvil_s" /> <category>Misc\Deeds\Carpentry\Anvil South Deed</category> *************** *** 100,104 **** <item id="small_forge_deed" inherit="blank_deed"> <name>Small Forge Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="small_forge" /> <category>Misc\Deeds\Carpentry\Small Forge Deed</category> --- 100,104 ---- <item id="small_forge_deed" inherit="blank_deed"> <name>Small Forge Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="small_forge" /> <category>Misc\Deeds\Carpentry\Small Forge Deed</category> *************** *** 108,112 **** <item id="large_forge_s_deed" inherit="blank_deed"> <name>Large Forge South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="large_forge_s" /> <category>Misc\Deeds\Carpentry\Large Forge South Deed</category> --- 108,112 ---- <item id="large_forge_s_deed" inherit="blank_deed"> <name>Large Forge South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="large_forge_s" /> <category>Misc\Deeds\Carpentry\Large Forge South Deed</category> *************** *** 122,126 **** <item id="training_dummy_s_deed" inherit="blank_deed"> <name>Training Dummy South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="training_dummy_s" /> <category>Misc\Deeds\Carpentry\Training Dummy South Deed</category> --- 122,126 ---- <item id="training_dummy_s_deed" inherit="blank_deed"> <name>Training Dummy South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="training_dummy_s" /> <category>Misc\Deeds\Carpentry\Training Dummy South Deed</category> *************** *** 136,140 **** <item id="pickpocket_dip_e_deed" inherit="blank_deed"> <name>Pickpocket Dip Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="pickpocket_dip_e" /> <category>Misc\Deeds\Carpentry\Pickpocket Dip Deed</category> --- 136,140 ---- <item id="pickpocket_dip_e_deed" inherit="blank_deed"> <name>Pickpocket Dip Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="pickpocket_dip_e" /> <category>Misc\Deeds\Carpentry\Pickpocket Dip Deed</category> *************** *** 144,148 **** <item id="spinning_wheel_s_deed" inherit="blank_deed"> <name>Spinning Wheel South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="spinning_wheel_s" /> <category>Misc\Deeds\Carpentry\Spinning Wheel South Deed</category> --- 144,148 ---- <item id="spinning_wheel_s_deed" inherit="blank_deed"> <name>Spinning Wheel South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="spinning_wheel_s" /> <category>Misc\Deeds\Carpentry\Spinning Wheel South Deed</category> *************** *** 158,162 **** <item id="loom_s_deed" inherit="blank_deed"> <name>Loom South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="loom_s" /> <category>Misc\Deeds\Carpentry\Loom South Deed</category> --- 158,162 ---- <item id="loom_s_deed" inherit="blank_deed"> <name>Loom South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="loom_s" /> <category>Misc\Deeds\Carpentry\Loom South Deed</category> *************** *** 172,176 **** <item id="stone_oven_s_deed" inherit="blank_deed"> <name>Stone Oven South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="stone_oven_s" /> <category>Misc\Deeds\Carpentry\Stone Oven South Deed</category> --- 172,176 ---- <item id="stone_oven_s_deed" inherit="blank_deed"> <name>Stone Oven South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="stone_oven_s" /> <category>Misc\Deeds\Carpentry\Stone Oven South Deed</category> *************** *** 186,190 **** <item id="flour_mill_s_deed" inherit="blank_deed"> <name>Flour Mill South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="flour_mill_s" /> <category>Misc\Deeds\Carpentry\Flour Mill South Deed</category> --- 186,190 ---- <item id="flour_mill_s_deed" inherit="blank_deed"> <name>Flour Mill South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="flour_mill_s" /> <category>Misc\Deeds\Carpentry\Flour Mill South Deed</category> *************** *** 200,204 **** <item id="water_trough_s_deed" inherit="blank_deed"> <name>Water Trough South Deed</name> ! <scripts>deeds.carpentry_deed</scripts> <tag name="carpentry_type" value="water_trough_s" /> <category>Misc\Deeds\Carpentry\Water Trough South Deed</category> --- 200,204 ---- <item id="water_trough_s_deed" inherit="blank_deed"> <name>Water Trough South Deed</name> ! <basescripts>deeds.carpentry_deed</basescripts> <tag name="carpentry_type" value="water_trough_s" /> <category>Misc\Deeds\Carpentry\Water Trough South Deed</category> *************** *** 214,218 **** <!-- house deed --> <item id="house" inherit="blank_deed"> ! <scripts>deeds.multideed</scripts> <category>Buildings\House deed (Classic and Custom)</category> </item> --- 214,218 ---- <!-- house deed --> <item id="house" inherit="blank_deed"> ! <basescripts>deeds.multideed</basescripts> <category>Buildings\House deed (Classic and Custom)</category> </item> *************** *** 221,233 **** <color>0x47</color> <buyprice>5</buyprice> ! <scripts>deeds.commoditydeed</scripts> </item> <item id="item_bless_deed" inherit="blank_deed"> ! <scripts>deeds.item_bless_deed</scripts> </item> <item id="clothing_bless_deed" inherit="blank_deed"> ! <scripts>deeds.clothing_bless_deed</scripts> </item> --- 221,233 ---- <color>0x47</color> <buyprice>5</buyprice> ! <basescripts>deeds.commoditydeed</basescripts> </item> <item id="item_bless_deed" inherit="blank_deed"> ! <basescripts>deeds.item_bless_deed</basescripts> </item> <item id="clothing_bless_deed" inherit="blank_deed"> ! <basescripts>deeds.clothing_bless_deed</basescripts> </item> *************** *** 235,239 **** <name>Guildstone Deed</name> <color>0x3c</color> ! <scripts>guilds.deed</scripts> <category>Misc\Guilds\Guildstone Deed</category> </item> --- 235,239 ---- <name>Guildstone Deed</name> <color>0x3c</color> ! <basescripts>guilds.deed</basescripts> <category>Misc\Guilds\Guildstone Deed</category> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:08
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/shrink In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/shrink Modified Files: shrink.xml Log Message: basescripts property Index: shrink.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/shrink/shrink.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shrink.xml 25 Aug 2004 17:03:47 -0000 1.3 --- shrink.xml 27 Aug 2004 14:43:28 -0000 1.4 *************** *** 11,15 **** <item id="shrink_pig"> <id>0x2101</id> ! <scripts>shrink</scripts> <name>shrink pig</name> <weight>0.1</weight> --- 11,15 ---- <item id="shrink_pig"> <id>0x2101</id> ! <basescripts>shrink</basescripts> <name>shrink pig</name> <weight>0.1</weight> *************** *** 18,22 **** <item id="shrink_cow"> <id>0x2103</id> ! <scripts>shrink</scripts> <name>shrink cow</name> <weight>0.1</weight> --- 18,22 ---- <item id="shrink_cow"> <id>0x2103</id> ! <basescripts>shrink</basescripts> <name>shrink cow</name> <weight>0.1</weight> *************** *** 25,29 **** <item id="shrink_llama"> <id>0x20f6</id> ! <scripts>shrink</scripts> <name>shrink llama</name> <weight>0.1</weight> --- 25,29 ---- <item id="shrink_llama"> <id>0x20f6</id> ! <basescripts>shrink</basescripts> <name>shrink llama</name> <weight>0.1</weight> *************** *** 32,36 **** <item id="shrink_sheep"> <id>0x20e6</id> ! <scripts>shrink</scripts> <name>shrink sheep</name> <weight>0.1</weight> --- 32,36 ---- <item id="shrink_sheep"> <id>0x20e6</id> ! <basescripts>shrink</basescripts> <name>shrink sheep</name> <weight>0.1</weight> *************** *** 39,43 **** <item id="shrink_cat"> <id>0x211b</id> ! <scripts>shrink</scripts> <name>shrink cat</name> <weight>0.1</weight> --- 39,43 ---- <item id="shrink_cat"> <id>0x211b</id> ! <basescripts>shrink</basescripts> <name>shrink cat</name> <weight>0.1</weight> *************** *** 46,50 **** <item id="shrink_dog"> <id>0x211c</id> ! <scripts>shrink</scripts> <name>shrink dog</name> <weight>0.1</weight> --- 46,50 ---- <item id="shrink_dog"> <id>0x211c</id> ! <basescripts>shrink</basescripts> <name>shrink dog</name> <weight>0.1</weight> *************** *** 53,57 **** <item id="shrink_horse_1"> <id>0x211f</id> ! <scripts>shrink</scripts> <name>shrink horse 1</name> <weight>0.1</weight> --- 53,57 ---- <item id="shrink_horse_1"> <id>0x211f</id> ! <basescripts>shrink</basescripts> <name>shrink horse 1</name> <weight>0.1</weight> *************** *** 60,64 **** <item id="shrink_horse_2"> <id>0x2120</id> ! <scripts>shrink</scripts> <name>shrink horse 2</name> <weight>0.1</weight> --- 60,64 ---- <item id="shrink_horse_2"> <id>0x2120</id> ! <basescripts>shrink</basescripts> <name>shrink horse 2</name> <weight>0.1</weight> *************** *** 67,71 **** <item id="shrink_horse_3"> <id>0x2121</id> ! <scripts>shrink</scripts> <name>shrink horse 3</name> <weight>0.1</weight> --- 67,71 ---- <item id="shrink_horse_3"> <id>0x2121</id> ! <basescripts>shrink</basescripts> <name>shrink horse 3</name> <weight>0.1</weight> *************** *** 74,78 **** <item id="shrink_horse_4"> <id>0x2124</id> ! <scripts>shrink</scripts> <name>shrink horse 4</name> <weight>0.1</weight> --- 74,78 ---- <item id="shrink_horse_4"> <id>0x2124</id> ! <basescripts>shrink</basescripts> <name>shrink horse 4</name> <weight>0.1</weight> *************** *** 81,85 **** <item id="shrink_packhorse"> <id>0x2126</id> ! <scripts>shrink</scripts> <name>shrink packhorse</name> <weight>0.1</weight> --- 81,85 ---- <item id="shrink_packhorse"> <id>0x2126</id> ! <basescripts>shrink</basescripts> <name>shrink packhorse</name> <weight>0.1</weight> *************** *** 88,92 **** <item id="shrink_packllama"> <id>0x2127</id> ! <scripts>shrink</scripts> <name>shrink packllama</name> <weight>0.1</weight> --- 88,92 ---- <item id="shrink_packllama"> <id>0x2127</id> ! <basescripts>shrink</basescripts> <name>shrink packllama</name> <weight>0.1</weight> *************** *** 95,99 **** <item id="shrink_wooly_sheep"> <id>0x20eb</id> ! <scripts>shrink</scripts> <name>shrink wooly sheep</name> <weight>0.1</weight> --- 95,99 ---- <item id="shrink_wooly_sheep"> <id>0x20eb</id> ! <basescripts>shrink</basescripts> <name>shrink wooly sheep</name> <weight>0.1</weight> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:08
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items Modified Files: core.xml magic.xml slotmachine.xml system.xml Log Message: basescripts property Index: system.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/system.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** system.xml 25 Aug 2004 17:03:44 -0000 1.10 --- system.xml 27 Aug 2004 14:43:26 -0000 1.11 *************** *** 39,43 **** <id>0xe77</id> <name>trashcan</name> ! <scripts>trashcan</scripts> <color>0x430</color> <nodecay /> --- 39,43 ---- <id>0xe77</id> <name>trashcan</name> ! <basescripts>trashcan</basescripts> <color>0x430</color> <nodecay /> Index: core.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/core.xml,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** core.xml 25 Aug 2004 17:03:44 -0000 1.37 --- core.xml 27 Aug 2004 14:43:26 -0000 1.38 *************** *** 11,15 **** <item id="bank_check"> <id>0x14f0</id> ! <scripts>check</scripts> <color>0x34</color> <name>a bank check</name> --- 11,15 ---- <item id="bank_check"> <id>0x14f0</id> ! <basescripts>check</basescripts> <color>0x34</color> <name>a bank check</name> Index: slotmachine.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/slotmachine.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** slotmachine.xml 25 Aug 2004 17:03:44 -0000 1.6 --- slotmachine.xml 27 Aug 2004 14:43:26 -0000 1.7 *************** *** 15,19 **** <color>386</color> <name>a slotmachine</name> ! <scripts>slotmachine</scripts> </item> --- 15,19 ---- <color>386</color> <name>a slotmachine</name> ! <basescripts>slotmachine</basescripts> </item> Index: magic.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/magic.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** magic.xml 25 Aug 2004 17:03:44 -0000 1.12 --- magic.xml 27 Aug 2004 14:43:26 -0000 1.13 *************** *** 21,25 **** <id>0xf6c</id> <nodecay /> ! <scripts>moongate</scripts> <category>Misc\Moongates\Blue Moongate</category> </item> --- 21,25 ---- <id>0xf6c</id> <nodecay /> ! <basescripts>moongate</basescripts> <category>Misc\Moongates\Blue Moongate</category> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:08
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/buildings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/buildings Modified Files: doors.xml dungeon.xml lightsources.xml Log Message: basescripts property Index: lightsources.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/lightsources.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** lightsources.xml 25 Aug 2004 17:03:44 -0000 1.16 --- lightsources.xml 27 Aug 2004 14:43:26 -0000 1.17 *************** *** 14,18 **** <id>0x9fb</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Sconce (W/E) (Off)</category> <lightsource>2</lightsource> --- 14,18 ---- <id>0x9fb</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Sconce (W/E) (Off)</category> <lightsource>2</lightsource> *************** *** 29,33 **** <id>0x9fd</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Sconce (W/E) (On)</category> <lightsource>2</lightsource> --- 29,33 ---- <id>0x9fd</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Sconce (W/E) (On)</category> <lightsource>2</lightsource> *************** *** 37,41 **** <id>0xa00</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Sconce (N/S) (Off)</category> <lightsource>2</lightsource> --- 37,41 ---- <id>0xa00</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Sconce (N/S) (Off)</category> <lightsource>2</lightsource> *************** *** 52,56 **** <id>0xa02</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Sconce (W/E) (On)</category> <lightsource>2</lightsource> --- 52,56 ---- <id>0xa02</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Sconce (W/E) (On)</category> <lightsource>2</lightsource> *************** *** 60,64 **** <id>0xa05</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Torch (W/E) (Off)</category> <lightsource>2</lightsource> --- 60,64 ---- <id>0xa05</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Torch (W/E) (Off)</category> <lightsource>2</lightsource> *************** *** 68,72 **** <id>0xa06</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Torch (W/E) (Empty)</category> <lightsource>2</lightsource> --- 68,72 ---- <id>0xa06</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Torch (W/E) (Empty)</category> <lightsource>2</lightsource> *************** *** 76,80 **** <id>0xa07</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Torch (W/E) (On)</category> <lightsource>2</lightsource> --- 76,80 ---- <id>0xa07</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Torch (W/E) (On)</category> <lightsource>2</lightsource> *************** *** 84,88 **** <id>0xa08</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 84,88 ---- <id>0xa08</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 91,95 **** <id>0xa09</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 91,95 ---- <id>0xa09</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 98,102 **** <id>0xa0a</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Torch (N/S) (Off)</category> <lightsource>2</lightsource> --- 98,102 ---- <id>0xa0a</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Torch (N/S) (Off)</category> <lightsource>2</lightsource> *************** *** 106,110 **** <id>0xa0b</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Torch (N/S) (Empty)</category> <lightsource>2</lightsource> --- 106,110 ---- <id>0xa0b</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Torch (N/S) (Empty)</category> <lightsource>2</lightsource> *************** *** 114,118 **** <id>0xa0c</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Wall Torch (N/S) (On)</category> <lightsource>2</lightsource> --- 114,118 ---- <id>0xa0c</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Wall Torch (N/S) (On)</category> <lightsource>2</lightsource> *************** *** 122,126 **** <id>0xa0d</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 122,126 ---- <id>0xa0d</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 129,133 **** <id>0xa0e</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 129,133 ---- <id>0xa0e</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 137,141 **** <id>0xa18</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Hanging Lantern 1 (Off)</category> <lightsource>2</lightsource> --- 137,141 ---- <id>0xa18</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Hanging Lantern 1 (Off)</category> <lightsource>2</lightsource> *************** *** 145,149 **** <id>0xa15</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Hanging Lantern 1 (On)</category> <lightsource>2</lightsource> --- 145,149 ---- <id>0xa15</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Hanging Lantern 1 (On)</category> <lightsource>2</lightsource> *************** *** 153,157 **** <id>0xa16</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 153,157 ---- <id>0xa16</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 160,164 **** <id>0xa17</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 160,164 ---- <id>0xa17</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 167,171 **** <id>0xa1d</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Hanging Lantern 2 (Off)</category> <lightsource>2</lightsource> --- 167,171 ---- <id>0xa1d</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Hanging Lantern 2 (Off)</category> <lightsource>2</lightsource> *************** *** 175,179 **** <id>0xa1a</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Hanging Lantern 2 (On)</category> <lightsource>2</lightsource> --- 175,179 ---- <id>0xa1a</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Hanging Lantern 2 (On)</category> <lightsource>2</lightsource> *************** *** 183,187 **** <id>0xa1b</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 183,187 ---- <id>0xa1b</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 190,194 **** <id>0xa1c</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 190,194 ---- <id>0xa1c</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 209,213 **** <id>0xa25</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lantern (Off)</category> <lightsource>29</lightsource> --- 209,213 ---- <id>0xa25</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lantern (Off)</category> <lightsource>29</lightsource> *************** *** 217,221 **** <id>0xa22</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lantern (On)</category> <lightsource>29</lightsource> --- 217,221 ---- <id>0xa22</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lantern (On)</category> <lightsource>29</lightsource> *************** *** 225,229 **** <id>0xa28</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 1 (Off)</category> <lightsource>2</lightsource> --- 225,229 ---- <id>0xa28</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 1 (Off)</category> <lightsource>2</lightsource> *************** *** 233,237 **** <id>0xa0f</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 1 (On)</category> <lightsource>2</lightsource> --- 233,237 ---- <id>0xa0f</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 1 (On)</category> <lightsource>2</lightsource> *************** *** 253,257 **** <id>0xa26</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 2 (Off)</category> <lightsource>2</lightsource> --- 253,257 ---- <id>0xa26</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 2 (Off)</category> <lightsource>2</lightsource> *************** *** 261,265 **** <id>0xb1a</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 2 (On)</category> <lightsource>2</lightsource> --- 261,265 ---- <id>0xb1a</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 2 (On)</category> <lightsource>2</lightsource> *************** *** 269,273 **** <id>0xb1b</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 269,273 ---- <id>0xb1b</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 276,280 **** <id>0xb1c</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>2</lightsource> </item> --- 276,280 ---- <id>0xb1c</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>2</lightsource> </item> *************** *** 283,287 **** <id>0xa27</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Small Candelabra (Off)</category> <lightsource>1</lightsource> --- 283,287 ---- <id>0xa27</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Small Candelabra (Off)</category> <lightsource>1</lightsource> *************** *** 292,296 **** <id>0xb1d</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Small Candelabra (On)</category> <lightsource>1</lightsource> --- 292,296 ---- <id>0xb1d</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Small Candelabra (On)</category> <lightsource>1</lightsource> *************** *** 301,305 **** <id>0xb1e</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>1</lightsource> <weight>3.0</weight> --- 301,305 ---- <id>0xb1e</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>1</lightsource> <weight>3.0</weight> *************** *** 309,313 **** <id>0xb1f</id> <nodecay /> ! <scripts>lightsource</scripts> <lightsource>1</lightsource> <weight>3.0</weight> --- 309,313 ---- <id>0xb1f</id> <nodecay /> ! <basescripts>lightsource</basescripts> <lightsource>1</lightsource> <weight>3.0</weight> *************** *** 317,321 **** <id>0xa29</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Big Candlabra (Off)</category> <lightsource>2</lightsource> --- 317,321 ---- <id>0xa29</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Big Candlabra (Off)</category> <lightsource>2</lightsource> *************** *** 325,329 **** <id>0xb26</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Big Candlabra (On)</category> <lightsource>2</lightsource> --- 325,329 ---- <id>0xb26</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Big Candlabra (On)</category> <lightsource>2</lightsource> *************** *** 339,343 **** <id>0xb21</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lamp Post 1 (Off)</category> <lightsource>2</lightsource> --- 339,343 ---- <id>0xb21</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lamp Post 1 (Off)</category> <lightsource>2</lightsource> *************** *** 347,351 **** <id>0xb20</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lamp Post 1 (On)</category> <lightsource>2</lightsource> --- 347,351 ---- <id>0xb20</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lamp Post 1 (On)</category> <lightsource>2</lightsource> *************** *** 355,359 **** <id>0xb22</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lamp Post 2 (Off)</category> <lightsource>2</lightsource> --- 355,359 ---- <id>0xb22</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lamp Post 2 (Off)</category> <lightsource>2</lightsource> *************** *** 363,367 **** <id>0xb23</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lamp Post 2 (On)</category> <lightsource>2</lightsource> --- 363,367 ---- <id>0xb23</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lamp Post 2 (On)</category> <lightsource>2</lightsource> *************** *** 371,375 **** <id>0xb24</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lamp Post 3 (Off)</category> <lightsource>2</lightsource> --- 371,375 ---- <id>0xb24</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lamp Post 3 (Off)</category> <lightsource>2</lightsource> *************** *** 379,383 **** <id>0xb25</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Lamp Post 3 (On)</category> <lightsource>2</lightsource> --- 379,383 ---- <id>0xb25</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Lamp Post 3 (On)</category> <lightsource>2</lightsource> *************** *** 421,425 **** <id>0x142c</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 3 (On)</category> <lightsource>2</lightsource> --- 421,425 ---- <id>0x142c</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 3 (On)</category> <lightsource>2</lightsource> *************** *** 429,433 **** <id>0x142f</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 3 (Off)</category> <lightsource>2</lightsource> --- 429,433 ---- <id>0x142f</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 3 (Off)</category> <lightsource>2</lightsource> *************** *** 437,441 **** <id>0x1430</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 4 (On)</category> <lightsource>2</lightsource> --- 437,441 ---- <id>0x1430</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 4 (On)</category> <lightsource>2</lightsource> *************** *** 445,449 **** <id>0x1433</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 4 (Off)</category> <lightsource>2</lightsource> --- 445,449 ---- <id>0x1433</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 4 (Off)</category> <lightsource>2</lightsource> *************** *** 453,457 **** <id>0x1434</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 5 (On)</category> <lightsource>2</lightsource> --- 453,457 ---- <id>0x1434</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 5 (On)</category> <lightsource>2</lightsource> *************** *** 461,465 **** <id>0x1437</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Candle 5 (Off)</category> <lightsource>2</lightsource> --- 461,465 ---- <id>0x1437</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Candle 5 (Off)</category> <lightsource>2</lightsource> *************** *** 470,474 **** <id>0x1853</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Skullcandle (W/E) (Off)</category> </item> --- 470,474 ---- <id>0x1853</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Skullcandle (W/E) (Off)</category> </item> *************** *** 477,481 **** <id>0x1854</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Skullcandle 1 (W/E) (On)</category> </item> --- 477,481 ---- <id>0x1854</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Skullcandle 1 (W/E) (On)</category> </item> *************** *** 496,500 **** <id>0x1857</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Skullcandle 1 (N/S) (Off)</category> </item> --- 496,500 ---- <id>0x1857</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Skullcandle 1 (N/S) (Off)</category> </item> *************** *** 503,507 **** <id>0x1858</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Skullcandle 1 (N/S) (On)</category> </item> --- 503,507 ---- <id>0x1858</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Skullcandle 1 (N/S) (On)</category> </item> *************** *** 523,527 **** <id>0xa12</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Torch (On)</category> </item> --- 523,527 ---- <id>0xa12</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Torch (On)</category> </item> *************** *** 540,544 **** <id>0xf64</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Torch (W/E) (Off)</category> </item> --- 540,544 ---- <id>0xf64</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Torch (W/E) (Off)</category> </item> *************** *** 547,551 **** <id>0xf6b</id> <nodecay /> ! <scripts>lightsource</scripts> <category>Decoration\Lightsources\Torch (N/S) (Off)</category> </item> --- 547,551 ---- <id>0xf6b</id> <nodecay /> ! <basescripts>lightsource</basescripts> <category>Decoration\Lightsources\Torch (N/S) (Off)</category> </item> Index: dungeon.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/dungeon.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** dungeon.xml 25 Aug 2004 17:03:43 -0000 1.11 --- dungeon.xml 27 Aug 2004 14:43:26 -0000 1.12 *************** *** 376,380 **** <id>0xEE3</id> <category>Dungeon\Spiderwebs\Spiderweb 1</category> ! <scripts>spiderweb</scripts> <maxhealth>100</maxhealth> <health>100</health> --- 376,380 ---- <id>0xEE3</id> <category>Dungeon\Spiderwebs\Spiderweb 1</category> ! <basescripts>spiderweb</basescripts> <maxhealth>100</maxhealth> <health>100</health> Index: doors.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/buildings/doors.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** doors.xml 25 Aug 2004 17:03:43 -0000 1.12 --- doors.xml 27 Aug 2004 14:43:25 -0000 1.13 *************** *** 15,19 **** <id>0x675</id> <nodecay /> ! <scripts>door</scripts> <category>Buildings\Doors\Metal Door 1\Metal Door (S/SW)</category> </item> --- 15,19 ---- <id>0x675</id> <nodecay /> ! <basescripts>door</basescripts> <category>Buildings\Doors\Metal Door 1\Metal Door (S/SW)</category> [...2601 lines suppressed...] --- 1356,1360 ---- <id>0x0362</id> <nodecay /> ! <basescripts>door</basescripts> </item> *************** *** 1362,1366 **** <id>0x0364</id> <nodecay /> ! <scripts>door</scripts> </item> --- 1362,1366 ---- <id>0x0364</id> <nodecay /> ! <basescripts>door</basescripts> </item> |
From: Sebastian H. <dar...@us...> - 2004-08-27 14:44:07
|
Update of /cvsroot/wpdev/xmlscripts/definitions/items/equipment In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23985/items/equipment Modified Files: clothes.xml drinks.xml food.xml misc.xml potions.xml Log Message: basescripts property Index: food.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/equipment/food.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** food.xml 25 Aug 2004 17:03:44 -0000 1.15 --- food.xml 27 Aug 2004 14:43:26 -0000 1.16 *************** *** 33,37 **** <id>0x970</id> <category>Equipment\Food\Stew</category> ! <scripts>food</scripts> <!-- You can eat stew out of the cauldrons --> <note>Use in conjunction with <ref id="item:974">cauldron n/s</ref> and <ref id="item:975">cauldron w/e</ref></note> </item> --- 33,37 ---- <id>0x970</id> <category>Equipment\Food\Stew</category> ! <basescripts>food</basescripts> <!-- You can eat stew out of the cauldrons --> <note>Use in conjunction with <ref id="item:974">cauldron n/s</ref> and <ref id="item:975">cauldron w/e</ref></note> </item> *************** *** 41,45 **** <id>0x976</id> <category>Equipment\Food\Slab of Bacon (N/S)</category> ! <scripts>food</scripts> <weight>0.2</weight> </item> --- 41,45 ---- <id>0x976</id> <category>Equipment\Food\Slab of Bacon (N/S)</category> ! <basescripts>food</basescripts> <weight>0.2</weight> </item> *************** *** 56,60 **** <category>Equipment\Food\Slice of Bacon (N/S)</category> <id>0x978</id> ! <scripts>food</scripts> <buyprice>3</buyprice> <sellprice>1</sellprice> --- 56,60 ---- <category>Equipment\Food\Slice of Bacon (N/S)</category> <id>0x978</id> ! <basescripts>food</basescripts> <buyprice>3</buyprice> <sellprice>1</sellprice> *************** *** 75,79 **** <sellprice>1</sellprice> <weight>0.1</weight> ! <scripts>cooking</scripts> <category>Equipment\Food\Raw Fish Steak</category> </item> --- 75,79 ---- <sellprice>1</sellprice> <weight>0.1</weight> ! <basescripts>cooking</basescripts> <category>Equipment\Food\Raw Fish Steak</category> </item> *************** *** 83,87 **** <id>0x103d</id> <weight>0.2</weight> ! <scripts>cooking</scripts> <category>Equipment\Food\Dough</category> </item> --- 83,87 ---- <id>0x103d</id> <weight>0.2</weight> ! <basescripts>cooking</basescripts> <category>Equipment\Food\Dough</category> </item> *************** *** 90,94 **** <item id="97b"> <id>0x97b</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Fish Steak</category> --- 90,94 ---- <item id="97b"> <id>0x97b</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Fish Steak</category> *************** *** 98,102 **** <item id="97c"> <id>0x97c</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Wedge of Cheese (small)</category> --- 98,102 ---- <item id="97c"> <id>0x97c</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Wedge of Cheese (small)</category> *************** *** 106,110 **** <item id="97d"> <id>0x97d</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Wedge of Cheese (big)</category> --- 106,110 ---- <item id="97d"> <id>0x97d</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Wedge of Cheese (big)</category> *************** *** 114,118 **** <item id="97e"> <id>0x97e</id> ! <scripts>food</scripts> <buyprice>25</buyprice> <sellprice>12</sellprice> --- 114,118 ---- <item id="97e"> <id>0x97e</id> ! <basescripts>food</basescripts> <buyprice>25</buyprice> <sellprice>12</sellprice> *************** *** 124,128 **** <item id="98c"> <id>0x98c</id> ! <scripts>food</scripts> <buyprice>6</buyprice> <sellprice>3</sellprice> --- 124,128 ---- <item id="98c"> <id>0x98c</id> ! <basescripts>food</basescripts> <buyprice>6</buyprice> <sellprice>3</sellprice> *************** *** 146,150 **** <weight>11</weight> <weight>0.1</weight> ! <scripts>food</scripts> </item> --- 146,150 ---- <weight>11</weight> <weight>0.1</weight> ! <basescripts>food</basescripts> </item> *************** *** 161,165 **** <sellprice>1</sellprice> <weight>0.1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Eggs</category> </item> --- 161,165 ---- <sellprice>1</sellprice> <weight>0.1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Eggs</category> </item> *************** *** 171,175 **** <sellprice>4</sellprice> <weight>0.1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Fried Eggs</category> </item> --- 171,175 ---- <sellprice>4</sellprice> <weight>0.1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Fried Eggs</category> </item> *************** *** 181,185 **** <sellprice>12</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Cooked Bird (W/E)</category> </item> --- 181,185 ---- <sellprice>12</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Cooked Bird (W/E)</category> </item> *************** *** 199,203 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>cooking</scripts> </item> --- 199,203 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>cooking</basescripts> </item> *************** *** 214,218 **** <buyprice>128</buyprice> <sellprice>64</sellprice> ! <scripts>food</scripts> <weight>4.5</weight> <category>Equipment\Food\Roast Pig (W/E)</category> --- 214,218 ---- <buyprice>128</buyprice> <sellprice>64</sellprice> ! <basescripts>food</basescripts> <weight>4.5</weight> <category>Equipment\Food\Roast Pig (W/E)</category> *************** *** 231,235 **** <buyprice>17</buyprice> <sellprice>8</sellprice> ! <scripts>food</scripts> <weight>0.2</weight> <category>Equipment\Food\Sausage (W/E)</category> --- 231,235 ---- <buyprice>17</buyprice> <sellprice>8</sellprice> ! <basescripts>food</basescripts> <weight>0.2</weight> <category>Equipment\Food\Sausage (W/E)</category> *************** *** 249,253 **** <buyprice>20</buyprice> <sellprice>10</sellprice> ! <scripts>food</scripts> <weight>0.1</weight> </item> --- 249,253 ---- <buyprice>20</buyprice> <sellprice>10</sellprice> ! <basescripts>food</basescripts> <weight>0.1</weight> </item> *************** *** 294,298 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>1</weight> </item> --- 294,298 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> </item> *************** *** 305,309 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> </item> --- 305,309 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> </item> *************** *** 314,318 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>0.1</weight> </item> --- 314,318 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>0.1</weight> </item> *************** *** 331,335 **** <buyprice>11</buyprice> <sellprice>5</sellprice> ! <scripts>food</scripts> <weight>1</weight> --- 331,335 ---- <buyprice>11</buyprice> <sellprice>5</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> *************** *** 342,346 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>0.1</weight> </item> --- 342,346 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>0.1</weight> </item> *************** *** 364,368 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>2</weight> </item> --- 364,368 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>2</weight> </item> *************** *** 408,412 **** <sellprice>3</sellprice> <weight>0.2</weight> ! <scripts>cooking</scripts> </item> --- 408,412 ---- <sellprice>3</sellprice> <weight>0.2</weight> ! <basescripts>cooking</basescripts> </item> *************** *** 415,419 **** <category>Equipment\Food\Cut of Ribs</category> <id>0x9f2</id> ! <scripts>food</scripts> <weight>0.1</weight> </item> --- 415,419 ---- <category>Equipment\Food\Cut of Ribs</category> <id>0x9f2</id> ! <basescripts>food</basescripts> <weight>0.1</weight> </item> *************** *** 426,430 **** <buyprice>8</buyprice> <sellprice>4</sellprice> ! <scripts>food</scripts> <weight>5</weight> </item> --- 426,430 ---- <buyprice>8</buyprice> <sellprice>4</sellprice> ! <basescripts>food</basescripts> <weight>5</weight> </item> *************** *** 443,447 **** <buyprice>7</buyprice> <sellprice>3</sellprice> ! <scripts>food</scripts> <weight>1</weight> --- 443,447 ---- <buyprice>7</buyprice> <sellprice>3</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> *************** *** 476,480 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>1</weight> --- 476,480 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> *************** *** 501,505 **** <buyprice>13</buyprice> <sellprice>6</sellprice> ! <scripts>food</scripts> <weight>1</weight> <category>Equipment\Food\Pumpkin 1</category> --- 501,505 ---- <buyprice>13</buyprice> <sellprice>6</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> <category>Equipment\Food\Pumpkin 1</category> *************** *** 523,527 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>1</weight> --- 523,527 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> *************** *** 536,540 **** <item id="c70"> <id>0xc70</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Head of Lettuce 1</category> --- 536,540 ---- <item id="c70"> <id>0xc70</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Head of Lettuce 1</category> *************** *** 551,555 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>1</weight> <id>0xc72</id> --- 551,555 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> <id>0xc72</id> *************** *** 568,572 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>1</weight> <id>0xc74</id> --- 568,572 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> <id>0xc74</id> *************** *** 584,588 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>1</weight> <id>0xc77</id> --- 584,588 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> <id>0xc77</id> *************** *** 600,604 **** <buyprice>7</buyprice> <sellprice>3</sellprice> ! <scripts>food</scripts> <weight>1</weight> <id>0xc79</id> --- 600,604 ---- <buyprice>7</buyprice> <sellprice>3</sellprice> ! <basescripts>food</basescripts> <weight>1</weight> <id>0xc79</id> *************** *** 616,620 **** <buyprice>6</buyprice> <sellprice>3</sellprice> ! <scripts>food</scripts> <weight>0.1</weight> <id>0xc7b</id> --- 616,620 ---- <buyprice>6</buyprice> <sellprice>3</sellprice> ! <basescripts>food</basescripts> <weight>0.1</weight> <id>0xc7b</id> *************** *** 632,636 **** <buyprice>3</buyprice> <sellprice>1</sellprice> ! <scripts>food</scripts> <weight>0.1</weight> <id>0xc7f</id> --- 632,636 ---- <buyprice>3</buyprice> <sellprice>1</sellprice> ! <basescripts>food</basescripts> <weight>0.1</weight> <id>0xc7f</id> *************** *** 670,674 **** <sellprice>3</sellprice> <weight>0.2</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bread 1</category> </item> --- 670,674 ---- <sellprice>3</sellprice> <weight>0.2</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bread 1</category> </item> *************** *** 684,688 **** <sellprice>4</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Pizza</category> </item> --- 684,688 ---- <sellprice>4</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Pizza</category> </item> *************** *** 690,696 **** <item id="1041"> <id>0x1041</id> ! <scripts>food</scripts> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Baked Pie</category> </item> --- 690,696 ---- <item id="1041"> <id>0x1041</id> ! <basescripts>food</basescripts> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Baked Pie</category> </item> *************** *** 701,705 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bowl of Carrots 1</category> </item> --- 701,705 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bowl of Carrots 1</category> </item> *************** *** 715,719 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bowl of Corn 1</category> </item> --- 715,719 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bowl of Corn 1</category> </item> *************** *** 729,733 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bowl of Lettuce 1</category> </item> --- 729,733 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bowl of Lettuce 1</category> </item> *************** *** 743,747 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bowl of Peas 1</category> </item> --- 743,747 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bowl of Peas 1</category> </item> *************** *** 757,761 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bowl of Potatoes</category> </item> --- 757,761 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bowl of Potatoes</category> </item> *************** *** 766,770 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bowl of Stew</category> </item> --- 766,770 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bowl of Stew</category> </item> *************** *** 775,779 **** <sellprice>1</sellprice> <weight>1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Tomato Soup</category> </item> --- 775,779 ---- <sellprice>1</sellprice> <weight>1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Tomato Soup</category> </item> *************** *** 784,788 **** <sellprice>3</sellprice> <weight>0.2</weight> ! <scripts>food</scripts> <category>Equipment\Food\Chicken Leg</category> </item> --- 784,788 ---- <sellprice>3</sellprice> <weight>0.2</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Chicken Leg</category> </item> *************** *** 790,794 **** <item id="160a"> <id>0x160a</id> ! <scripts>food</scripts> <weight>0.2</weight> <category>Equipment\Food\Leg of Lamb</category> --- 790,794 ---- <item id="160a"> <id>0x160a</id> ! <basescripts>food</basescripts> <weight>0.2</weight> <category>Equipment\Food\Leg of Lamb</category> *************** *** 799,803 **** <buyprice>6</buyprice> <sellprice>3</sellprice> ! <scripts>food</scripts> <category>Equipment\Food\Pan of Cookies</category> </item> --- 799,803 ---- <buyprice>6</buyprice> <sellprice>3</sellprice> ! <basescripts>food</basescripts> <category>Equipment\Food\Pan of Cookies</category> </item> *************** *** 805,809 **** <item id="160c"> <id>0x160c</id> ! <scripts>food</scripts> <category>Equipment\Food\Plate of Cookies</category> </item> --- 805,809 ---- <item id="160c"> <id>0x160c</id> ! <basescripts>food</basescripts> <category>Equipment\Food\Plate of Cookies</category> </item> *************** *** 814,818 **** <sellprice>1</sellprice> <weight>0.1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Banana 1 (N/S)</category> </item> --- 814,818 ---- <sellprice>1</sellprice> <weight>0.1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Banana 1 (N/S)</category> </item> *************** *** 849,853 **** <item id="1723"> <id>0x1723</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Coconut 1 (W/E)</category> --- 849,853 ---- <item id="1723"> <id>0x1723</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Coconut 1 (W/E)</category> *************** *** 875,879 **** <id>0x1727</id> <weight>0.1</weight> ! <scripts>food</scripts> <category>Equipment\Food\Bunch of Dates</category> </item> --- 875,879 ---- <id>0x1727</id> <weight>0.1</weight> ! <basescripts>food</basescripts> <category>Equipment\Food\Bunch of Dates</category> </item> *************** *** 881,885 **** <item id="1728"> <id>0x1728</id> ! <scripts>food</scripts> <buyprice>3</buyprice> <sellprice>1</sellprice> --- 881,885 ---- <item id="1728"> <id>0x1728</id> ! <basescripts>food</basescripts> <buyprice>3</buyprice> <sellprice>1</sellprice> *************** *** 896,900 **** <item id="172a"> <id>0x172a</id> ! <scripts>food</scripts> <buyprice>3</buyprice> <sellprice>1</sellprice> --- 896,900 ---- <item id="172a"> <id>0x172a</id> ! <basescripts>food</basescripts> <buyprice>3</buyprice> <sellprice>1</sellprice> *************** *** 911,915 **** <item id="1ad3"> <id>0x1ad3</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Donuts</category> --- 911,915 ---- <item id="1ad3"> <id>0x1ad3</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Donuts</category> *************** *** 918,922 **** <item id="1e1c"> <id>0x1e1c</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Cooked Fish 1</category> --- 918,922 ---- <item id="1e1c"> <id>0x1e1c</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Cooked Fish 1</category> *************** *** 937,941 **** <item id="1e1f"> <id>0x1e1f</id> ! <scripts>food</scripts> <weight>0.1</weight> <category>Equipment\Food\Sliced Ham</category> --- 937,941 ---- <item id="1e1f"> <id>0x1e1f</id> ! <basescripts>food</basescripts> <weight>0.1</weight> <category>Equipment\Food\Sliced Ham</category> Index: potions.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/equipment/potions.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** potions.xml 25 Aug 2004 17:03:45 -0000 1.11 --- potions.xml 27 Aug 2004 14:43:27 -0000 1.12 *************** *** 13,17 **** <item id="potion_base"> <weight>0.5</weight> ! <scripts>potions</scripts> </item> --- 13,17 ---- <item id="potion_base"> <weight>0.5</weight> ! <basescripts>potions</basescripts> </item> *************** *** 23,27 **** <tag name="kegfill" value="0" type="int" /> <movable>1</movable> ! <scripts>potionkeg</scripts> </item> --- 23,27 ---- <tag name="kegfill" value="0" type="int" /> <movable>1</movable> ! <basescripts>potionkeg</basescripts> </item> *************** *** 29,33 **** <item id="potion_keg_empty2" inherit="potion_keg"> <id>0x1ad7</id> ! <scripts>potionkeg</scripts> </item> --- 29,33 ---- <item id="potion_keg_empty2" inherit="potion_keg"> <id>0x1ad7</id> ! <basescripts>potionkeg</basescripts> </item> Index: misc.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/equipment/misc.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** misc.xml 25 Aug 2004 17:03:44 -0000 1.5 --- misc.xml 27 Aug 2004 14:43:27 -0000 1.6 *************** *** 17,21 **** <weight>0.02</weight> <category>Equipment\Misc\Kindling</category> ! <scripts>kindling</scripts> </item> --- 17,21 ---- <weight>0.02</weight> <category>Equipment\Misc\Kindling</category> ! <basescripts>kindling</basescripts> </item> Index: drinks.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/equipment/drinks.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** drinks.xml 25 Aug 2004 17:03:44 -0000 1.3 --- drinks.xml 27 Aug 2004 14:43:26 -0000 1.4 *************** *** 24,28 **** <item id="9c8"> <id>0x9c8</id> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 24,28 ---- <item id="9c8"> <id>0x9c8</id> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 31,35 **** <item id="99b"> <id>0x99b</id> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 31,35 ---- <item id="99b"> <id>0x99b</id> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 56,60 **** <item id="99f"> <id>0x99f</id> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 56,60 ---- <item id="99f"> <id>0x99f</id> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 99,103 **** <item id="9c7"> <id>0x9c7</id> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 99,103 ---- <item id="9c7"> <id>0x9c7</id> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 108,112 **** <tag name="fluid" value="ale" /> <tag name="quantity" value="5" /> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 108,112 ---- <tag name="fluid" value="ale" /> <tag name="quantity" value="5" /> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 116,120 **** <tag name="fluid" value="cider" /> <tag name="quantity" value="5" /> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 116,120 ---- <tag name="fluid" value="cider" /> <tag name="quantity" value="5" /> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 124,128 **** <tag name="fluid" value="liquor" /> <tag name="quantity" value="5" /> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 124,128 ---- <tag name="fluid" value="liquor" /> <tag name="quantity" value="5" /> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 132,136 **** <tag name="fluid" value="milk" /> <tag name="quantity" value="5" /> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 132,136 ---- <tag name="fluid" value="milk" /> <tag name="quantity" value="5" /> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 140,144 **** <tag name="fluid" value="wine" /> <tag name="quantity" value="5" /> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 140,144 ---- <tag name="fluid" value="wine" /> <tag name="quantity" value="5" /> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 148,152 **** <tag name="fluid" value="water" /> <tag name="quantity" value="5" /> ! <scripts>beverage</scripts> <weight>1.0</weight> </item> --- 148,152 ---- <tag name="fluid" value="water" /> <tag name="quantity" value="5" /> ! <basescripts>beverage</basescripts> <weight>1.0</weight> </item> *************** *** 156,160 **** <item id="9ad"> <id>0x9ad</id> ! <scripts>beverage</scripts> <weight>0.5</weight> <category>Equipment\Drinks\Pitcher of Milk 1</category> --- 156,160 ---- <item id="9ad"> <id>0x9ad</id> ! <basescripts>beverage</basescripts> <weight>0.5</weight> <category>Equipment\Drinks\Pitcher of Milk 1</category> *************** *** 171,175 **** <id>0x1f7d</id> <weight>1.0</weight> ! <scripts>beverage</scripts> <category>Equipment\Drinks\Glass of Cider 1</category> <tag name="fluid" value="cider" /> --- 171,175 ---- <id>0x1f7d</id> <weight>1.0</weight> ! <basescripts>beverage</basescripts> <category>Equipment\Drinks\Glass of Cider 1</category> <tag name="fluid" value="cider" /> *************** *** 194,198 **** <item id="1f85"> <id>0x1f85</id> ! <scripts>beverage</scripts> <category>Equipment\Drinks\Glass of Liquor 1</category> <weight>1.0</weight> --- 194,198 ---- <item id="1f85"> <id>0x1f85</id> ! <basescripts>beverage</basescripts> <category>Equipment\Drinks\Glass of Liquor 1</category> <weight>1.0</weight> *************** *** 221,225 **** <tag name="fluid" value="milk" /> <tag name="quantity" value="5" type="int" /> ! <scripts>beverage</scripts> <category>Equipment\Drinks\Glass of Milk 1</category> </item> --- 221,225 ---- <tag name="fluid" value="milk" /> <tag name="quantity" value="5" type="int" /> ! <basescripts>beverage</basescripts> <category>Equipment\Drinks\Glass of Milk 1</category> </item> *************** *** 245,249 **** <tag name="fluid" value="wine" /> <tag name="quantity" value="5" type="int" /> ! <scripts>beverage</scripts> <category>Equipment\Drinks\Glass of Wine 1</category> </item> --- 245,249 ---- <tag name="fluid" value="wine" /> <tag name="quantity" value="5" type="int" /> ! <basescripts>beverage</basescripts> <category>Equipment\Drinks\Glass of Wine 1</category> </item> *************** *** 268,272 **** <id>0x1f81</id> <weight>1.0</weight> ! <scripts>beverage</scripts> </item> --- 268,272 ---- <id>0x1f81</id> <weight>1.0</weight> ! <basescripts>beverage</basescripts> </item> *************** *** 291,295 **** <tag name="fluid" value="water" /> <tag name="quantity" value="5" type="int" /> ! <scripts>beverage</scripts> <category>Equipment\Drinks\Glass of Water 1</category> </item> --- 291,295 ---- <tag name="fluid" value="water" /> <tag name="quantity" value="5" type="int" /> ! <basescripts>beverage</basescripts> <category>Equipment\Drinks\Glass of Water 1</category> </item> *************** *** 314,318 **** <buyprice>13</buyprice> <sellprice>6</sellprice> ! <scripts>beverage</scripts> <weight>1.0</weight> <tag name="fluid" value="ale" /> --- 314,318 ---- <buyprice>13</buyprice> <sellprice>6</sellprice> ! <basescripts>beverage</basescripts> <weight>1.0</weight> <tag name="fluid" value="ale" /> *************** *** 328,332 **** <item id="1f97"> <id>0x1f97</id> ! <scripts>beverage</scripts> <buyprice>13</buyprice> <sellprice>6</sellprice> --- 328,332 ---- <item id="1f97"> <id>0x1f97</id> ! <basescripts>beverage</basescripts> <buyprice>13</buyprice> <sellprice>6</sellprice> *************** *** 344,348 **** <item id="1f99"> <id>0x1f99</id> ! <scripts>beverage</scripts> <buyprice>13</buyprice> <sellprice>6</sellprice> --- 344,348 ---- <item id="1f99"> <id>0x1f99</id> ! <basescripts>beverage</basescripts> <buyprice>13</buyprice> <sellprice>6</sellprice> *************** *** 360,364 **** <item id="1f9b"> <id>0x1f9b</id> ! <scripts>beverage</scripts> <buyprice>13</buyprice> <sellprice>6</sellprice> --- 360,364 ---- <item id="1f9b"> <id>0x1f9b</id> ! <basescripts>beverage</basescripts> <buyprice>13</buyprice> <sellprice>6</sellprice> *************** *** 377,381 **** <item id="ff8"> <id>0xff8</id> ! <scripts>beverage</scripts> <buyprice>13</buyprice> <sellprice>6</sellprice> --- 377,381 ---- <item id="ff8"> <id>0xff8</id> ! <basescripts>beverage</basescripts> <buyprice>13</buyprice> <sellprice>6</sellprice> Index: clothes.xml =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/definitions/items/equipment/clothes.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** clothes.xml 25 Aug 2004 17:03:44 -0000 1.15 --- clothes.xml 27 Aug 2004 14:43:26 -0000 1.16 *************** *** 14,18 **** <category>Clothes\Accessories\Flower Garland (N/S)</category> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 14,18 ---- <category>Clothes\Accessories\Flower Garland (N/S)</category> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 28,32 **** <category>Clothes\Torso\Gilded Dress (W/E)</category> <weight>3.0</weight> ! <scripts>equipment</scripts> </item> --- 28,32 ---- <category>Clothes\Torso\Gilded Dress (W/E)</category> <weight>3.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 42,46 **** <category>Clothes\Accessories\Fur Cape (W/E)</category> <weight>4.0</weight> ! <scripts>equipment</scripts> </item> --- 42,46 ---- <category>Clothes\Accessories\Fur Cape (W/E)</category> <weight>4.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 56,60 **** <category>Clothes\Accessories\Fur Sarong (W/E)</category> <weight>3.0</weight> ! <scripts>equipment</scripts> </item> --- 56,60 ---- <category>Clothes\Accessories\Fur Sarong (W/E)</category> <weight>3.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 70,74 **** <category>Clothes\Torso\Formal Shirt (W/E)</category> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 70,74 ---- <category>Clothes\Torso\Formal Shirt (W/E)</category> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 88,92 **** <sellprice>21</sellprice> <weight>5.0</weight> ! <scripts>equipment</scripts> </item> --- 88,92 ---- <sellprice>21</sellprice> <weight>5.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 105,109 **** <weight>1.0</weight> <category>Clothes\Accessories\Beads</category> ! <scripts>equipment</scripts> </item> --- 105,109 ---- <weight>1.0</weight> <category>Clothes\Accessories\Beads</category> ! <basescripts>equipment</basescripts> </item> *************** *** 117,121 **** <sellprice>16</sellprice> <weight>4.0</weight> ! <scripts>equipment</scripts> </item> --- 117,121 ---- <sellprice>16</sellprice> <weight>4.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 136,140 **** <sellprice>18</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 136,140 ---- <sellprice>18</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 155,159 **** <sellprice>12</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 155,159 ---- <sellprice>12</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 189,193 **** <sellprice>15</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 189,193 ---- <sellprice>15</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 208,212 **** <sellprice>17</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 208,212 ---- <sellprice>17</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 226,230 **** <sellprice>13</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 226,230 ---- <sellprice>13</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 244,248 **** <sellprice>13</sellprice> <weight>4.0</weight> ! <scripts>equipment</scripts> </item> --- 244,248 ---- <sellprice>13</sellprice> <weight>4.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 260,264 **** <color><random list="COLORS_RANDOM" /></color> <dye /> ! <scripts>equipment</scripts> </item> --- 260,264 ---- <color><random list="COLORS_RANDOM" /></color> <dye /> ! <basescripts>equipment</basescripts> </item> *************** *** 277,281 **** <sellprice>19</sellprice> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 277,281 ---- <sellprice>19</sellprice> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 287,291 **** <sellprice>15</sellprice> <weight>1</weight> ! <scripts>equipment</scripts> </item> --- 287,291 ---- <sellprice>15</sellprice> <weight>1</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 297,301 **** <sellprice>19</sellprice> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 297,301 ---- <sellprice>19</sellprice> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 307,311 **** <sellprice>15</sellprice> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 307,311 ---- <sellprice>15</sellprice> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 317,321 **** <sellprice>15</sellprice> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 317,321 ---- <sellprice>15</sellprice> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 327,331 **** <sellprice>19</sellprice> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 327,331 ---- <sellprice>19</sellprice> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 333,337 **** <id>0x1f05</id> <category>Clothes\Accessories\Bead Necklace</category> ! <scripts>equipment</scripts> </item> --- 333,337 ---- <id>0x1f05</id> <category>Clothes\Accessories\Bead Necklace</category> ! <basescripts>equipment</basescripts> </item> *************** *** 339,343 **** <id>0x1f06</id> <category>Clothes\Accessories\Bracelet 2</category> ! <scripts>equipment</scripts> </item> --- 339,343 ---- <id>0x1f06</id> <category>Clothes\Accessories\Bracelet 2</category> ! <basescripts>equipment</basescripts> </item> *************** *** 345,349 **** <id>0x1f07</id> <category>Clothes\Accessories\Earrings 2</category> ! <scripts>equipment</scripts> </item> --- 345,349 ---- <id>0x1f07</id> <category>Clothes\Accessories\Earrings 2</category> ! <basescripts>equipment</basescripts> </item> *************** *** 351,355 **** <id>0x1f08</id> <category>Clothes\Accessories\Necklace 4</category> ! <scripts>equipment</scripts> </item> --- 351,355 ---- <id>0x1f08</id> <category>Clothes\Accessories\Necklace 4</category> ! <basescripts>equipment</basescripts> </item> *************** *** 357,361 **** <id>0x1f09</id> <category>Clothes\Accessories\Ring 2</category> ! <scripts>equipment</scripts> </item> --- 357,361 ---- <id>0x1f09</id> <category>Clothes\Accessories\Ring 2</category> ! <basescripts>equipment</basescripts> </item> *************** *** 363,367 **** <id>0x1f0a</id> <category>Clothes\Accessories\Necklace 5</category> ! <scripts>equipment</scripts> </item> --- 363,367 ---- <id>0x1f0a</id> <category>Clothes\Accessories\Necklace 5</category> ! <basescripts>equipment</basescripts> </item> *************** *** 374,378 **** <sellprice>22</sellprice> <weight>3.0</weight> ! <scripts>equipment</scripts> </item> --- 374,378 ---- <sellprice>22</sellprice> <weight>3.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 391,395 **** <sellprice>12</sellprice> <weight>1.0</weight> ! <scripts>equipment</scripts> </item> --- 391,395 ---- <sellprice>12</sellprice> <weight>1.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 406,410 **** <id>0x2307</id> <weight>3.0</weight> ! <scripts>equipment</scripts> </item> --- 406,410 ---- <id>0x2307</id> <weight>3.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 423,427 **** <sellprice>13</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 423,427 ---- <sellprice>13</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 441,445 **** <sellprice>28</sellprice> <weight>4.0</weight> ! <scripts>equipment</scripts> </item> --- 441,445 ---- <sellprice>28</sellprice> <weight>4.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 460,464 **** <sellprice>27</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 460,464 ---- <sellprice>27</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 479,483 **** <sellprice>12</sellprice> <weight>3.0</weight> ! <scripts>equipment</scripts> </item> --- 479,483 ---- <sellprice>12</sellprice> <weight>3.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 498,502 **** <sellprice>28</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 498,502 ---- <sellprice>28</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 517,521 **** <sellprice>34</sellprice> <weight>3.0</weight> ! <scripts>equipment</scripts> </item> --- 517,521 ---- <sellprice>34</sellprice> <weight>3.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 535,539 **** <sellprice>25</sellprice> <weight>4.0</weight> ! <scripts>equipment</scripts> </item> --- 535,539 ---- <sellprice>25</sellprice> <weight>4.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 554,558 **** <sellprice>16</sellprice> <weight>5.0</weight> ! <scripts>equipment</scripts> </item> --- 554,558 ---- <sellprice>16</sellprice> <weight>5.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 573,577 **** <sellprice>12</sellprice> <weight>2.0</weight> ! <scripts>equipment</scripts> </item> --- 573,577 ---- <sellprice>12</sellprice> <weight>2.0</weight> ! <basescripts>equipment</basescripts> </item> *************** *** 589,593 **** <dye /> <color><random list="COLORS_RANDOM" /></color> ! <scripts>equipment</scripts> </item> --- 589,593 ---- <dye /> <color><random list="COLORS_RANDOM" /></color> ! <basescripts>equipment</basescripts> </item> |