|
|
#5 | |
|
L2-scripts клиент Classic 1.5 + ГЕО до 1 июля
Регистрация: 23.09.2013
Сообщений: 437
|
and here is the code from positionutils, maybe i am wrong in the below examples, but for sure the 360 degree shield defense is not working, in game with geodata enabled on live server, players complain for 3 months allready and tested also. please check positionutils class.
Цитата:
Код:
public static int convertDegreeToClientHeading(double degree)
{
if (degree < 0.0D)
degree = 360.0D + degree;
return (int)(degree * 182.04444444399999D);
}
|
|
|