geia sas paides xriazome ti vothia sas otan pao na kano build me to maven me vgazi auto to error
[iNFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for l2jfree:l2j-gameserver:jar:1.0.0
[WARNING] The expression ${artifactId} is deprecated. Please use ${project.artifactId} instead. @ l2jfree:l2j-gameserver:1.0.0, C:\Users\Angelika\workspace\IL\L2_GameServer_IL\pom.xml
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[ERROR] Failed to execute goal org.codehaus.mojo:maven-buildnumber-plugin:0.9.5:create (default) on project l2j-gameserver: Cannot get the revision information from the scm repository :
svn: This client is too old to work with working copy 'C:\Users\Angelika\workspace\IL'; please get a newer Subversion client
-> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
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
WhiteFace
geia sas paides xriazome ti vothia sas otan pao na kano build me to maven me vgazi auto to error
mipos kserete pos mboro na to diorthoso? euxaristo poli
ekana search sto forum alla den mboresa na vro..
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.