|
From: <cn...@us...> - 2024-02-19 17:21:37
|
Revision: 1438
http://sourceforge.net/p/seq/svn/1438
Author: cn187
Date: 2024-02-19 17:21:34 +0000 (Mon, 19 Feb 2024)
Log Message:
-----------
Modified Paths:
--------------
showeq/branches/cn187_devel/ChangeLog
showeq/branches/cn187_devel/conf/zoneopcodes.xml
showeq/branches/cn187_devel/src/everquest.h
showeq/branches/cn187_devel/src/races.h
Modified: showeq/branches/cn187_devel/ChangeLog
===================================================================
--- showeq/branches/cn187_devel/ChangeLog 2024-02-19 17:21:27 UTC (rev 1437)
+++ showeq/branches/cn187_devel/ChangeLog 2024-02-19 17:21:34 UTC (rev 1438)
@@ -1,3 +1,8 @@
+Fransick (12/16/23)
+----------------
+- Updated races.h for Laurion's Song
+- fixed action2Struct
+
BlueAdept (12/06/23)
----------------
- Update to version 6.3.9
Modified: showeq/branches/cn187_devel/conf/zoneopcodes.xml
===================================================================
--- showeq/branches/cn187_devel/conf/zoneopcodes.xml 2024-02-19 17:21:27 UTC (rev 1437)
+++ showeq/branches/cn187_devel/conf/zoneopcodes.xml 2024-02-19 17:21:34 UTC (rev 1438)
@@ -171,7 +171,7 @@
<comment>BeginCastCode</comment>
<payload dir="both" typename="beginCastStruct" sizechecktype="match"/>
</opcode>
- <opcode id="2fe1" name="OP_CastSpell" updated="07/19/23">
+ <opcode id="0b36" name="OP_CastSpell" updated="12/05/23">
<comment>StartCastCode</comment>
<payload dir="both" typename="startCastStruct" sizechecktype="match"/>
</opcode>
Modified: showeq/branches/cn187_devel/src/everquest.h
===================================================================
--- showeq/branches/cn187_devel/src/everquest.h 2024-02-19 17:21:27 UTC (rev 1437)
+++ showeq/branches/cn187_devel/src/everquest.h 2024-02-19 17:21:34 UTC (rev 1438)
@@ -2042,8 +2042,8 @@
/*0022*/ int32_t damage;
/*0026*/ uint8_t uknown0026[10];
/*0036*/ uint8_t type; // Bash, kick, cast, etc.
-/*0037*/ uint8_t unknown0011[11];
-/*0040*/
+/*0037*/ uint8_t unknown0037[19];
+/*0056*/
};
// This can be used to gather info on spells cast on us
@@ -2090,7 +2090,7 @@
/*
** Info sent when you start to cast a spell
-** Length: 44 Octets
+** Length: 39 Octets
** OpCode: StartCastCode
*/
@@ -2098,12 +2098,12 @@
{
/*0000*/ int32_t slot; // Spell slot
/*0004*/ uint32_t spellId; // Spell ID
-/*0008*/ int32_t inventorySlot; // ***Placeholder
-/*0012*/ uint8_t unknown0012[8]; // ***Placeholder
-/*0020*/ uint32_t targetId; // The current selected target
-/*0024*/ uint8_t unknown0024[4]; // ***Placeholder
-/*0028*/ uint8_t unknown0028[16]; // ***Placeholder (4/7/2009)
-/*0044*/
+/*0008*/ uint8_t unknown0008[10]; // ***Placeholder
+/*0018*/ uint32_t targetId; // The current selected target
+/*0022*/ uint8_t unknown0022[2]; // ***Placeholder
+/*0024*/ uint8_t unknown0024[2]; // ***Placeholder
+/*0026*/ uint8_t unknown0026[13]; // ***Placeholder (4/7/2009)
+/*0039*/
};
/*
@@ -2656,7 +2656,7 @@
struct GuildMemberUpdate
{
/*000*/ uint32_t guildId; // guild id
-/*004*/ uint8_t unknown004[4]; // 4 bytes added 11/16/16
+/*004*/ uint8_t unknown004[4]; // 4 bytes added 11/16/16
/*008*/ char name[64]; // member name
/*072*/ uint16_t zoneId; // zone id
/*074*/ uint16_t zoneInstance; // zone instance
Modified: showeq/branches/cn187_devel/src/races.h
===================================================================
--- showeq/branches/cn187_devel/src/races.h 2024-02-19 17:21:27 UTC (rev 1437)
+++ showeq/branches/cn187_devel/src/races.h 2024-02-19 17:21:34 UTC (rev 1438)
@@ -942,4 +942,24 @@
"Stitchwork Lion", // 918
"Fungus Man", // 919
"Duck", // 920
+ "Squirrel Mount", // 921
+ "Kerran", // 922
+ "Phoenix Mount", // 923
+ "Hotariton", // 924
+ "Skunk", // 925
+ "Chest", // 926
+ "Hotaria Fly Swarm", // 927
+ "Hotaria Fly", // 928
+ "Badger", // 929
+ "Chicken", // 930
+ "Cow", // 931
+ "Deer", // 932
+ "Ferret", // 933
+ "Fox", // 934
+ "Goat", // 935
+ "Raccoon", // 936
+ "Red Panda", // 937
+ "Sheep", // 938
+ "Ogre NPC Rallosian", // 939
+ "Goblin", // 940
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|