re paidia xrisimopio to http://svn.l2jserver.com/branches/L2_GameServer_T2.3/ kai exi 13 warnings problems einai ta arxika tou den ta ekana egw mporite na mou pite poso sobara einai afta ta problems i an kani na to xrisimopoihso i an ginete na ta fix ty ospou na apantisete as paixo mia dotista........ ;)
The constructor AutoChatHandler.AutoChatInstance.AutoChatDefinition(AutoChatHandler.AutoChatInstance, L2Npc) is never used locally AutoChatHandler.java /L2_GameServer/java/net/sf/l2j/gameserver/model line 619 Java Problem
The constructor Universe.Coord(L2CharPosition) is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 145 Java Problem
The constructor Universe.Position(int, int, int, int) is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 87 Java Problem
The constructor Universe.Position(L2CharPosition) is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 95 Java Problem
The field L2AirShipInstance.L2AirShipTrajet.L2AirShipPoint.speed2 is never read locally L2AirShipInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 65 Java Problem
The field L2PcInstance.PunishTask._startedAt is never read locally L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 12357 Java Problem
The method getEndTime() from the type PetitionManager.Petition is never used locally PetitionManager.java /L2_GameServer/java/net/sf/l2j/gameserver/instancemanager line 176 Java Problem
The method getInstanceCount() from the type SevenSignsFestival.FestivalManager is never used locally SevenSignsFestival.java /L2_GameServer/java/net/sf/l2j/gameserver line 2045 Java Problem
The method getItemId() from the type RequestSellItem.Item is never used locally RequestSellItem.java /L2_GameServer/java/net/sf/l2j/gameserver/network/clientpackets line 245 Java Problem
The method getNpcId() from the type NpcBufferTable.NpcBufferSkills is never used locally NpcBufferTable.java /L2_GameServer/java/net/sf/l2j/gameserver/datatables line 66 Java Problem
The method getOwnerId() from the type RecipeController.RecipeItemMaker.TempItem is never used locally RecipeController.java /L2_GameServer/java/net/sf/l2j/gameserver line 910 Java Problem
The method l2CP() from the type Universe.Position is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 104 Java Problem
The method setSpawnRate(int) from the type SevenSignsFestival.L2DarknessFestival is never used locally SevenSignsFestival.java /L2_GameServer/java/net/sf/l2j/gameserver line 2250 Java Problem
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Hello.
This code works well. It removes buff with double click, but If you preffer remove buff with ALT + mouse click, place this code in AbnormalStatusWnd.uc
function OnLButtonDown(WindowHandle a_WindowHandle, int X, int Y)
{
local Rect windowBounds;
local int targetRow;
local int targetCol;
local StatusIconInfo info;
local SkillInfo skillInfo;
if (IsKeyDown(IK_alt) == false)
return;
// Find window position
windowBounds = Me.GetRect();
// Process clicks outside of window frame only
if (X > (windowBounds.nX + NSTATUSICON_FRAMESIZE))
{
// Calc row and col of targeted icon
targetRow = (Y - windowBounds.nY) / NSTATUSICON_SIZE;
targetCol = (X - windowBounds.nX - NSTATUSICON_FRAMESIZE) / NSTATUSICON_SIZE;
// Store status info of targeted icon
StatusIcon.GetItem(targetRow, targetCol, info);
// Store actual skill info and make sure it is exists
if (GetSkillInfo(info.ClassID, info.Level, skillInfo))
{
// Request server to stop skill effect
// Usage: _dispel:<int:skill_id>,<int :skill_level>
// Example: _dispel:313,8
RequestBypassToServer ( "_dispel:" $ string ( skillInfo. SkillID ) $ "," $ string ( skillInfo. SkillLevel ) ) ) ;
}
}
}
Question
goustakis
re paidia xrisimopio to http://svn.l2jserver.com/branches/L2_GameServer_T2.3/ kai exi 13 warnings problems einai ta arxika tou den ta ekana egw mporite na mou pite poso sobara einai afta ta problems i an kani na to xrisimopoihso i an ginete na ta fix ty ospou na apantisete as paixo mia dotista........ ;)
The constructor AutoChatHandler.AutoChatInstance.AutoChatDefinition(AutoChatHandler.AutoChatInstance, L2Npc) is never used locally AutoChatHandler.java /L2_GameServer/java/net/sf/l2j/gameserver/model line 619 Java Problem
The constructor Universe.Coord(L2CharPosition) is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 145 Java Problem
The constructor Universe.Position(int, int, int, int) is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 87 Java Problem
The constructor Universe.Position(L2CharPosition) is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 95 Java Problem
The field L2AirShipInstance.L2AirShipTrajet.L2AirShipPoint.speed2 is never read locally L2AirShipInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 65 Java Problem
The field L2PcInstance.PunishTask._startedAt is never read locally L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 12357 Java Problem
The method getEndTime() from the type PetitionManager.Petition is never used locally PetitionManager.java /L2_GameServer/java/net/sf/l2j/gameserver/instancemanager line 176 Java Problem
The method getInstanceCount() from the type SevenSignsFestival.FestivalManager is never used locally SevenSignsFestival.java /L2_GameServer/java/net/sf/l2j/gameserver line 2045 Java Problem
The method getItemId() from the type RequestSellItem.Item is never used locally RequestSellItem.java /L2_GameServer/java/net/sf/l2j/gameserver/network/clientpackets line 245 Java Problem
The method getNpcId() from the type NpcBufferTable.NpcBufferSkills is never used locally NpcBufferTable.java /L2_GameServer/java/net/sf/l2j/gameserver/datatables line 66 Java Problem
The method getOwnerId() from the type RecipeController.RecipeItemMaker.TempItem is never used locally RecipeController.java /L2_GameServer/java/net/sf/l2j/gameserver line 910 Java Problem
The method l2CP() from the type Universe.Position is never used locally Universe.java /L2_GameServer/java/net/sf/l2j/gameserver line 104 Java Problem
The method setSpawnRate(int) from the type SevenSignsFestival.L2DarknessFestival is never used locally SevenSignsFestival.java /L2_GameServer/java/net/sf/l2j/gameserver line 2250 Java Problem
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.