Speed hack and getting player ID question

08/02/2009 00:07 Xorg#1
Hello,
My force party code looks like:
Code:
if (strcmp ( command , "fparty" ) == 0)
	 {
		 scanf("%d%*c",&fparty);
		 SendPacket(0x2d,"bd",1,fparty);
		 printf("Force party -> %d\n",fparty);
	 }

How can I get player ID by nick? I dont know player IDs ;)
08/02/2009 00:16 chibis#2
1. You can sniff it in recv (packet = 0x33, i think), look at the sources in forum

2. Are you sure that these are the new adresses?
08/02/2009 07:48 YourFear#3
ehh it's easy xD
Code:
if ((type == 0x2c) && (fparty == 1) ){
	playerid = temp;
	SendPacket(0x2D,"bd",1,playerid);
		 }
Code:
if (strcmp ( command, "fparty1" ) == 0)
{
        fparty=1;
}
if (strcmp ( command, "fparty0" ) == 0)
{
        fparty=0;
}
Have Fun!
YourFear
08/02/2009 16:12 Xorg#4
Give me the line of MemCpy of temp variable in your code please.
I dont know where the ID is exactly and dont have time for searching ;)
08/02/2009 21:42 YourFear#5
check on screenshot :P

[Only registered and activated users can see links. Click Here To Register...]

u must have temp in source.
08/02/2009 22:00 katze123#6
lol :-D