Afou To Patisa Posted July 5, 2017 Posted July 5, 2017 (edited) This is the topic: http://www.maxcheaters.com/topic/215808-onclick-a-player-show-him-as-heading-change/?do=findComment&comment=2642841 Basically when u click a character, it seems like he slightly rotate. Pm me if u can fix this. Edited July 5, 2017 by Afou To Patisa
Afou To Patisa Posted July 5, 2017 Author Posted July 5, 2017 What the heck people? is this like the hardest code ever in history of 2017?
Afou To Patisa Posted July 5, 2017 Author Posted July 5, 2017 Make a video again. Old was deleted. Video is pointless, just think of a player walk and suddedly he stop infront of you, and u double left click on him and he change heading (small sometimes big some other). And then to happen again he must move.
Afou To Patisa Posted July 5, 2017 Author Posted July 5, 2017 (edited) i fixed it my self.. BEFORE: if (activeChar.getTarget() != target) { activeChar.setTarget(target); activeChar.sendPacket(new MyTargetSelected(target.getObjectId(), 0)); if (activeChar.getTarget() != target) activeChar.sendPacket(new ValidateLocation((L2Character) target)); } else if (interact) { if (activeChar != target) if (activeChar.getTarget() != target) activeChar.sendPacket(new ValidateLocation((L2Character) target)); AFTER: if (activeChar.getTarget() != target) { activeChar.setTarget(target); activeChar.sendPacket(new MyTargetSelected(target.getObjectId(), 0)); } else if (interact) { if (activeChar != target) if (activeChar.getTarget() != target) activeChar.sendPacket(new ValidateLocation((L2Character) target)); Simple remoove the first validateLocation. Edited July 5, 2017 by Afou To Patisa
Rootware Posted July 5, 2017 Posted July 5, 2017 Next problem places: Wrong ValidatePosition packet. Missed incoming heading value from client. Bad analys of packet into server side; Wrong ValidateLocation packet from server. Missed correct heading value. Look previous problem. It's all places where can be missed heading of characters who around you. And use L2PHX for analyses all data.
Afou To Patisa Posted July 5, 2017 Author Posted July 5, 2017 Next problem places: Wrong ValidatePosition packet. Missed incoming heading value from client. Bad analys of packet into server side; Wrong ValidateLocation packet from server. Missed correct heading value. Look previous problem. It's all places where can be missed heading of characters who around you. And use L2PHX for analyses all data. i did fix as i mention
Recommended Posts