[Help] RB Guard Invisible

02/28/2011 21:29 HackProvider#1
Heya guys,

I can't find the packet.cs in my newestcoserver source

i have to replace it to this

public static COPacket SpawnEntity(Game.Companion Cmp)
{
byte[] Packet = new byte[8 + 138 + Cmp.Name.Length];
COPacket P = new COPacket(Packet);

P.WriteInt16((ushort)(Packet.Length - 8));
P.WriteInt16((ushort)10014);
P.WriteInt32(Cmp.Mesh);
P.WriteInt32(Cmp.EntityID);
P.WriteInt32(0);
P.WriteInt64(0);//Status Effect
P.Move(28);
P.WriteInt16((ushort)Cmp.CurHP);
P.WriteInt16(Cmp.Level);
P.Move(2);//Hair
P.WriteInt16(Cmp.Loc.X);
P.WriteInt16(Cmp.Loc.Y);
P.WriteByte(Cmp.Direction);
P.WriteByte(100);
P.Move(72);
P.WriteByte(1);
P.WriteByte((byte)Cmp.Name.Length);
P.WriteString(Cmp.Name);

return P;
}

but i can't find the packets.cs

thanks
02/28/2011 21:35 Arco.#2
Search the forum, lostsolder05 released the fix for that.
02/28/2011 22:26 HackProvider#3
yes but its for loft ... i can't fix it with Newestcoserver... could you help me?
tried everything its just I know what to do but i can't find where to put it

thanks