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!

Packet error give dc

Newbie Spellweaver
Joined
Oct 13, 2017
Messages
10
Reaction score
0
the skill dispel:

when I send the packet it looks like that:

5B 00 75 C4 44 0B timestamp
59 43 23 00 skill id
03 skill level
16 03 pos x
22 00 pos y
80 58 02 00 58 02 Idk (it is not read anywhere)

now the player get it as that

C6 00 : send skill buff handler
4B 00 00 00 :character id
03 effect id >>> here problem
59 43 23 00 skill id
03 direction
01 00 00 00 done
00 00 00 00 00 close

now the error that every time who use the skill
at skill level 3,4,5 it give everyone dc
error code 38
but at level 1-2, 6-30 it works perfectly...
hows it that


ok little change:

each level of dispel does other effect
I mean like 1-2 does dispel
level 3-4 do dc
level 5 do level up
level 6 do hp up????
7 do bless.

Wtf happening...
 
Last edited:
Skilled Illusionist
Joined
Jul 17, 2010
Messages
333
Reaction score
165
Code:
5B 00 
75 C4 44 0B //timestamp
59 43 23 00 //skill id
03 //skill level
16 03 //pos x
22 00 //pos y
80 //affected party member bit map
58 02 //delay for party buff effect
00 //affected mob count
58 02 //delay for mob debuff effect

Code:
C6 00 //send user effect for remote user 
4B 00 00 00 //character id
[B]02 //effect id[/B] *[U]check below link to know what effect id is[/U]. in this case, 0x02 (SkillAffected)
59 43 23 00 //skill id
03 //[B]skill level[/B]

//redundant bytes
01 00 00 00 00 00 00 00 00
http://forum.ragezone.com/f427/v83-force-users-listen-game-1081165/
 
Upvote 0
Back
Top