VB6 Proxy - NightDevil Transformation

01/07/2008 05:15 NovaCygni#1
Hi im trying to get the Nightdevil transformation working from a button but it doesnt seem to be working right, my code is :
Code:
Private Sub NightDevil_Click(Index As Integer)
    cl_recv2 (MakeHex2("3C 00 F9 03") & g_accid & MakeHex2("C7 67 14 00 03 00 00 00 0C 00 00 00 F2 E7 45 A5 00 00 00 00 01 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"))
    stat "NightDevil Activated!"
End Sub
I know to get it working otherwise I can send the packet
Code:
3C 00 F9 03 C7 67 14 00 03 00 00 00 0C 00 00 00 F2 E7 45 A5 00 00 00 00 01 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
to the client but I cant see why it isnt working from the button :confused: any ideas?
01/07/2008 06:15 skinnykhalida#2
sry i dunno c++ or java... all i can sy is cant wait till its out, sry :S
01/07/2008 08:05 NovaCygni#3
Quote:
Originally Posted by skinnykhalida View Post
sry i dunno c++ or java... all i can sy is cant wait till its out, sry :S
Its VB6 not Java or C++...
01/07/2008 09:24 IHateHomos#4
Conquer might have changed the packet, when did you last check for this? It might be old.
01/07/2008 09:30 Coksnuss#5
Maybe an other clientside check so if you do not have 100/100 XP you cant use XP skill either or something like that...
01/07/2008 17:47 Real~Death#6
whats the night devil packets?to server and from server?post if you can
01/07/2008 18:01 Some-Guy#7
Quote:
Originally Posted by NovaCygni View Post
Hi im trying to get the Nightdevil transformation working from a button but it doesnt seem to be working right, my code is :
Code:
Private Sub NightDevil_Click(Index As Integer)
    cl_recv2 (MakeHex2("3C 00 F9 03") & g_accid & MakeHex2("C7 67 14 00 03 00 00 00 0C 00 00 00 F2 E7 45 A5 00 00 00 00 01 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"))
    stat "NightDevil Activated!"
End Sub
I know to get it working otherwise I can send the packet
Code:
3C 00 F9 03 C7 67 14 00 03 00 00 00 0C 00 00 00 F2 E7 45 A5 00 00 00 00 01 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
to the client but I cant see why it isnt working from the button :confused: any ideas?
You've not taken the acc id out of the packet, should be:

Code:
cl_recv2 (MakeHex2("3C 00 F9 03") & g_accid & MakeHex2(" 03 00 00 00 0C 00 00 00 F2 E7 45 A5 00 00 00 00 01 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"))
What you were sending was basicly:
Code:
cl_recv2 (MakeHex2("3C 00 F9 03") & g_accid & g_accid & MakeHex2(" 03 00 00 00 0C 00 00 00 F2 E7 45 A5 00 00 00 00 01 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 A0 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"))
01/07/2008 23:37 flowerpot!#8
What's the point of doing this? AFAIK, changing to ND on client side won't increase attack rate on server side. And since you're not really casting ND the skill isn't going to be levelled...
01/08/2008 00:51 Some-Guy#9
Just a useless 'fun' feature, like the monster transform in my proxy (which is never used :D)