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!

Tera Client-Server OpCodes

Newbie Spellweaver
Joined
May 25, 2007
Messages
30
Reaction score
11
Share every client2server and server2client OpCodes here if you dont mind. Latest opcodes will be updated in this thread and we will share to everybody in this forum.:thumbup1:

Note that this is work for 1725 rev.

Client2Server (Recv Packets)
0x9587 (RpFriendAdd)
0x9D3A (RpGetFriendList )

Server2Client (Send packets)
 
Junior Spellweaver
Joined
Jul 23, 2013
Messages
108
Reaction score
86
//Auth
Recv.Add(unchecked((short) 0x4DBC), typeof (RpCheckVersion)); //all revs
Recv.Add(unchecked((short) 0xAFEE), typeof(RpAuthNew)); //2304 NA
Recv.Add(unchecked((short)0xA89D), typeof(CpSystemInfo)); //2304 NA
Recv.Add(unchecked((short)0xA110), typeof(RpGetPlayerList)); //2304 NA
/////////////////////////////////////////////////////////////////////////


//Characters
Recv.Add(unchecked((short)0xF6E0), typeof(CpRequestCharCreate)); //2304 NA
Recv.Add(unchecked((short)0xE190), typeof(RpCheckName)); //2304 NA
Recv.Add(unchecked((short)0x776A), typeof(RpCheckNameForUse)); //2304 NA
Recv.Add(unchecked((short)0xFB9C), typeof(RpCreateCharacter)); //2304 NA
Recv.Add(unchecked((short)0x536B), typeof(RpDeleteCharacter)); //2204 NA
//////////////////////////////////////////////////////////////////////////


//Enter World
Recv.Add(unchecked((short) 0x6332), typeof(RpPlay)); //2304 NA
Recv.Add(unchecked((short) 0x9E18), typeof(RpGetBindPoint)); //2304 NA
Recv.Add(unchecked((short) 0xD6B5), typeof(RpEnterWorld)); //2304 NA
//////////////////////////////////////////////////////////////////////////

Send.Add(typeof(SpCharacterCheckNameResult), unchecked((short)0xE631)); //2304 NA
Send.Add(typeof(SpCharacterCreateResult), unchecked((short)0xA8CC)); //2304 NA
Send.Add(typeof(SpCharacterList), unchecked((short)0x932A)); //2304 NA
Send.Add(typeof(SpCharacterInit), unchecked((short)0xDF34)); //2304 NA
On continue themselves..
 
Newbie Spellweaver
Joined
Aug 23, 2008
Messages
74
Reaction score
19
Just very old opcodes for the 1725 version of tera. You can't use them for newer versions, just forget them.
 
Back
Top