Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Packets] LaTale Item System Packets

Newbie Spellweaver
Joined
Jan 10, 2009
Messages
11
Reaction score
8
Hi everyone, I'm the author of MyLatale, the first "moveable" game server. :):Due to many reasons, I've disappeared for several months, and MyLatale is almost died. Now I'm back, not for the updates of MyLatale, but for bring some Packets structs for you who love LaTale.:):

Item System Packets.
These packets have the operate codes 2000009XX.

Code:
structure Item  'The Item structure, length 59Dec
  int PackageID  'One of your package when you press I or E
  byte Position  'The position which the item in your package
  int ItemID  'As we see, this is item id in the item ldt table..
  byte Sum  'Have a lot of same item? this is the sum
  int ??
  byte PropertyLv 'Due to your weapon color..
  ItemProperty ItemProperties(5)
  byte ????(12)
  int WearValue
  int ??
  int ??
end structure

structure ItemProperty
  short PropertyTypeAndLv 'This value mod 100 is the prop lv
  short PropertyValue
end structure
  
structure Pac_200000900 'Recv Update item solt
  int NetID
  int MobID
  Item Data
end structure

structure Pac_200000901 'Recv Update many item solt
  int NetID
  int MobID
  short DataSum
  Item Data(DataSum)
end structure

structure Pac_200000904 'Send Item solt swap
  int SourcePacketID
  byte SourcePosition
  byte NumbersToSwap
  int DestPacketID
  byte DestPosition
end structure

structure Pac_200000905  'Recv Item solt swap
  int NetID
  int MobID
  Pac_200000904 ReturnData
end structure

structure Pac_200000906  'Send Destory item
  int PacketID
  byte Position
  byte NumbersToDestory
end structure

structure Pac_200000907  'Recv Destory item
  int NetID
  int MobID
  Pac_200000906 ReturnData
end structure

structure Pac_200000920  'Send Item dispense
  int SourcePacketID
  byte SourcePosition
  byte NumbersToSwap
  int DestPacketID
  byte DestPosition
end structure

structure Pac_200000921  'Recv Item dispense
  int NetID
  int MobID
  int ??
  int SourcePackageID
  byte SourcePosition
  byte NumbersToDispense
  Item DestItem
end structure

structure Pac_200000909  'Send Item using
  int NetID
  int MobID
  int PackageID
  byte Position
end structure

structure Pac_200000910  'Recv Item using
  int NetID
  int MobID
  int ??
  int PackageID
  byte Position
  byte NumbersUsed
end structure


To be continued...
 
Newbie Spellweaver
Joined
Jan 10, 2009
Messages
11
Reaction score
8
in fact, i just hook the packet sending and processing function then read uncrypted packet directly...
 
Newbie Spellweaver
Joined
Jan 21, 2011
Messages
5
Reaction score
0
Anyone have the source, or do i have to unpack the spf files to work with them, someone please help me, im a noob, a full tutorial could help :)
 
Initiate Mage
Joined
Sep 20, 2014
Messages
1
Reaction score
0
Hi i was wondering if anyone could explain to me how this whole codex stuff works
 
Back
Top