Hello, people! I'm new here, and sorry if I made this post in the wrong section, but I need your help.
I've faced just the same issue like here, but I still can't beat this:
I need a piece of advice if some of you guys know on how to resolve this error. I've already spent a few days looking for info, tried lots of JDK's v8 (a few different versions) but still got no luck compiling the file via Eclipse.
I'm using Win10, and already tried to setup the Environmental Variables for each Java version I've used (I made it separately for the each version, deleted old Path and created new ones to avoid mixup). Also, Ant 1.8.2 is installed, and the correct Path to Bin folder was created too(and the path for JDK as well). The error is always the same, and nothing has changed when I tried my voodoo magic and different tricks. I thought that I was using the wrong JDK's, but I tried all the versions possible (one by one) and got lost in my thoughts and my broken mind. I've started from the newest JDK 8 version to the oldest one as mentioned in my screenshot attached.
Thank you guys in advance for you help!
This is the message I've got from Eclipse and it's always the same, no matter what kind of changes I've applied, and JDK versions I've used:
[javac] Compiling 1875 source files to C:\Server\Workspace\l24all\build\bin
[javac] error: error reading C:\Server\Workspace\l24all\dist\libs\mmocore.jar;java.net.URISyntaxException: Illegal character in path at index 44: file:/C:/Server/Workspace/l24all/dist/libs/${manifest.libs}
[javac] warning: [options] bootstrap class path not set in conjunction with -source 8
BUILD FAILED
C:\Server\Workspace\l24all\build.xml:63: Compile failed; see the compiler error output for details.
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
KevinS
Hello, people! I'm new here, and sorry if I made this post in the wrong section, but I need your help.
I've faced just the same issue like here, but I still can't beat this:
I need a piece of advice if some of you guys know on how to resolve this error. I've already spent a few days looking for info, tried lots of JDK's v8 (a few different versions) but still got no luck compiling the file via Eclipse.
I'm using Win10, and already tried to setup the Environmental Variables for each Java version I've used (I made it separately for the each version, deleted old Path and created new ones to avoid mixup). Also, Ant 1.8.2 is installed, and the correct Path to Bin folder was created too(and the path for JDK as well). The error is always the same, and nothing has changed when I tried my voodoo magic and different tricks. I thought that I was using the wrong JDK's, but I tried all the versions possible (one by one) and got lost in my thoughts and my broken mind. I've started from the newest JDK 8 version to the oldest one as mentioned in my screenshot attached.
Thank you guys in advance for you help!
This is the message I've got from Eclipse and it's always the same, no matter what kind of changes I've applied, and JDK versions I've used:
[javac] Compiling 1875 source files to C:\Server\Workspace\l24all\build\bin
[javac] error: error reading C:\Server\Workspace\l24all\dist\libs\mmocore.jar; java.net.URISyntaxException: Illegal character in path at index 44: file:/C:/Server/Workspace/l24all/dist/libs/${manifest.libs}
[javac] warning: [options] bootstrap class path not set in conjunction with -source 8
BUILD FAILED
C:\Server\Workspace\l24all\build.xml:63: Compile failed; see the compiler error output for details.
3 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.