|
|
#1 |
|
L2-scripts клиент Classic 1.5 + ГЕО до 1 июля
Регистрация: 23.09.2013
Сообщений: 437
|
shield defense is wrong... it have succeess at all sides exept from back who have 0% succeess, and the shield defense is stuck on 90% with or without aura and focus shield...
|
|
|
|
#2 |
|
Главный программист
Регистрация: 18.01.2011
Сообщений: 4,429
|
Не работает блокировка щитом со всех направлений (есть такие скилы которые дают защиту 360 градусов не пашет)
__________________
Внимание: с 1 мая 2015 г. скайп технической поддержки будет: L2-scripts старый скайп тех поддержки обслуживаться не будет ! |
|
|
|
#3 |
|
Модератор
Регистрация: 03.06.2012
Сообщений: 4,624
|
I checked this with debug in server. Its working (Checked skills: 318 Aegis Stance, 316 Aegis)! Get skill ID's where this dont working.
__________________
Техническая поддержка L2-Scripts Внимание: с 1 мая 2015 г. скайп технической поддержки будет: L2-scripts старый скайп тех поддержки обслуживаться не будет ! |
|
|
|
#4 |
|
L2-scripts клиент Classic 1.5 + ГЕО до 1 июля
Регистрация: 23.09.2013
Сообщений: 437
|
|
|
|
|
#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);
}
|
|
|
|
|
#6 |
|
L2-scripts клиент Classic 1.5 + ГЕО до 1 июля
Регистрация: 23.09.2013
Сообщений: 437
|
video proof also , no 360 shield defense no matter the skill
http://www.youtube.com/watch?v=w_fPo...ature=youtu.be |
|
|
|
#7 |
|
L2-scripts клиент Classic 1.5 + ГЕО до 1 июля
Регистрация: 23.09.2013
Сообщений: 437
|
please fix this players complain about this for 4 months, in tauti was working, in lindvior is not!
360 degrees shield defense not work! |
|
|
|
#8 |
|
Главный программист
Регистрация: 18.01.2011
Сообщений: 4,429
|
fixed the hard way. There's no need to calc the angle if it's 360 degrees, therefore I've added a note in the code if the max angle is 360 (like from everywhere) he will be always facing the target.
__________________
Внимание: с 1 мая 2015 г. скайп технической поддержки будет: L2-scripts старый скайп тех поддержки обслуживаться не будет ! |
|