- Joined
- Jan 10, 2009
- Messages
- 11
- Reaction score
- 8
Hi everyone, I'm the author of MyLatale, the first "moveable" game server. 
ue 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.
To be continued...



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...