hey, let's go
While working on Pk Exploits.
it worked and inserts the lines Well.
but when i need to see the lines on the board it's not appear
it need to dc to make load with the user.
now, what should make to make the lines appear on board immediately
Without Dcing.
Regards.
yea You have to Send The packet with then Details you about to save in database each Time You kill player surely not less than your level by more than 20 level
yea You have to Send The packet with then Details you about to save in database each Time You kill player surely not less than your level by more than 20 level
Ah, right, forgot about the level gap stuff. Haven't been on TQ's Conquer in quite some time..
just update database & when the player get the list , must send the packet with first 10 killed players.
Right, so it is done with pages? I'm assuming that when they click the arrow to go to the next page, you get a packet that you must handle as well? Given the page number you get from that packet, you then ignore the first (10 * page) entries, and send them the 10 after that.
Right, so it is done with pages? I'm assuming that when they click the arrow to go to the next page, you get a packet that you must handle as well? Given the page number you get from that packet, you then ignore the first (10 * page) entries, and send them the 10 after that.
That's fine, but you're doing it backwards. The higher kill counts should be at the top, not the bottom. There's multiple ways to sort it via C#, but the easiest way is simple to do it in your SQL query. Simply pop this on the end
Code:
ORDER BY `KillCount` DESC
replacing KillCount with whatever the name of the field that contains the amount of kills is.
That's fine, but you're doing it backwards. The higher kill counts should be at the top, not the bottom. There's multiple ways to sort it via C#, but the easiest way is simple to do it in your SQL query. Simply pop this on the end
Code:
ORDER BY `KillCount` DESC
replacing KillCount with whatever the name of the field that contains the amount of kills is.
i know, but i want to make something different.
so, i made order by killed time.