Update of /cvsroot/seq/showeq/conf
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv28119/conf
Modified Files:
seqdef.xml zoneopcodes.xml
Log Message:
Updated for Serpents Spine:
- New Movement Packet opcode + handler
- Regenerated staticspells.h
- Updated zones.h, typenames.h, races.h
- Fixed structs/added padding
- Added some new weapon names
- Support for up to level 75
- New con tables
- New con color for gray (looks poor - too much like a spawn point)
Index: seqdef.xml
===================================================================
RCS file: /cvsroot/seq/showeq/conf/seqdef.xml,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- seqdef.xml 13 Sep 2005 15:23:08 -0000 1.21
+++ seqdef.xml 30 Sep 2006 21:18:24 -0000 1.22
@@ -3212,8 +3212,11 @@
</section>
<!-- ============================================================= -->
<section name="Player" >
+ <property name="GrayBase" >
+ <color blue="77" red="77" green="98" />
+ </property>
<property name="GreenBase" >
- <color blue="0" red="0" green="95" />
+ <color blue="0" red="0" green="232" />
</property>
<property name="CyanBase" >
<color blue="255" red="0" green="255" />
@@ -3231,7 +3234,7 @@
<color blue="0" red="127" green="0" />
</property>
<property name="Unknown" >
- <color blue="164" red="160" green="160" />
+ <color blue="104" red="100" green="100" />
</property>
</section>
<!-- ============================================================= -->
Index: zoneopcodes.xml
===================================================================
RCS file: /cvsroot/seq/showeq/conf/zoneopcodes.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- zoneopcodes.xml 18 Jun 2006 00:46:59 -0000 1.16
+++ zoneopcodes.xml 30 Sep 2006 21:18:24 -0000 1.17
@@ -122,6 +122,14 @@
<payload dir="server" typename="playerSpawnPosStruct" sizechecktype="match"/>
<payload dir="both" typename="playerSelfPosStruct" sizechecktype="match"/>
</opcode>
+ <opcode id="5f33" name="OP_NpcMoveUpdate" updated="08/13/06">
+ <comment>Position updates</comment>
+ <payload dir="server" typename="uint8_t" sizechecktype="none"/>
+ </opcode>
+ <opcode id="1399" name="OP_MobUpdate" updated="09/23/06">
+ <comment>old MobUpdateCode</comment>
+ <payload dir="both" typename="spawnPositionUpdate" sizechecktype="match"/>
+ </opcode>
<opcode id="6f3b" name="OP_NewSpawn" updated="06/13/06">
<comment>old NewSpawnCode</comment>
<payload dir="server" typename="spawnStruct" sizechecktype="match"/>
@@ -583,10 +591,6 @@
handlers. These need to be refound again, but we'd see errors if they
were commented out. If you're looking for opcodes, find these first
if you're so inclined! -->
- <opcode id="003e" name="OP_MobUpdate" implicitlen="12" updated="05/26/04">
- <comment>old MobUpdateCode</comment>
- <payload dir="both" typename="spawnPositionUpdate" sizechecktype="match"/>
- </opcode>
<opcode id="00d0" name="OP_CorpseLocResponse" updated="05/26/04">
<comment>old CorpseLocCode:</comment>
<payload dir="server" typename="corpseLocStruct" sizechecktype="match"/>
|