soo, when i click "Compose" it says iam to far away, Idk what could be the prob i sent my client X,Y Cords same for the NPC's and its fine, any1 have any idea ?
this is the general data iam sending, this is for Impulse's Source, Ftw
this is the general data iam sending, this is for Impulse's Source, Ftw
Code:
case 1:
{
INpc npc = null;
if (client.Map.Npcs.TryGetValue(client.ActiveNpc, out npc))
{
GeneralData data = new GeneralData(true);
data.ID = 0x7e;
data.UID = client.Entity.UID;
data.TimeStamp = Time32.Now;
data.dwParam = 1;
data.wParam3 = npc.X;
data.wParam4 = npc.Y;
client.Send(data);
}
break;
}