PDA

View Full Version : [TLBB] Hướng dẫn sửa lỗi hiển thị thời gian mở khóa



huuduyen_05
25-06-14, 03:47 PM
Mấy ngày nay toàn bộ client TLBB các server đều bị lỗi hiển thị thời gian mở khóa vật phẩm.

<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>

Lỗi phát sinh từ hàm SuperTooltips:GetPUnlockElapsedTime()

Có thể do coder viết hàm trên ở client không cẩn thận nên gây lỗi trên.

Cách fix:

Mở supertooltip.lua ở Interface.axp
Tìm dòng


local nLeftTime = g_nUnlockingTimeNeeded - nUnlockElapsedTime;


Ở hàm g_GetUnlockingStr ( nUnlockElapsedTime )

Thêm trước dòng đó đoạn sau:



if nUnlockElapsedTime >= 235930000 then
nUnlockElapsedTime = nUnlockElapsedTime - 235930000;
--hd add fix hien thi thoi gian khoa 25/6/2014
end


=> Xong.

Chúc các bạn thành công.