hi all .i have a problem. i have my own server gracia final but gracia final skills don't work and the 2nd problem is that forgotten scrool ,scrool of escape: castel,clanhall etc dont work. it said not handled .so if someone can give me the files with gracia final skills all working and the file with forgotten scrools work and scrol of escape etc or if u know the problem just said to me
thank you very much
and another problem is that i cant see drop list at some mobs i edited them with drop with 4 items(but i put at the 1st itme category 2 at the second i put category 2 and etc ...) and them i could saw the drop list what u put when u put drop at some mobs (the id for that item ,min max,and at category what u put ?i want to drop all the items i put there in the same time not 1 now another 1 in next kill all at the same time 4 items) pls help me thx
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
arad
hi all .i have a problem. i have my own server gracia final but gracia final skills don't work and the 2nd problem is that forgotten scrool ,scrool of escape: castel,clanhall etc dont work. it said not handled .so if someone can give me the files with gracia final skills all working and the file with forgotten scrools work and scrol of escape etc or if u know the problem just said to me
thank you very much
and another problem is that i cant see drop list at some mobs i edited them with drop with 4 items(but i put at the 1st itme category 2 at the second i put category 2 and etc ...) and them i could saw the drop list what u put when u put drop at some mobs (the id for that item ,min max,and at category what u put ?i want to drop all the items i put there in the same time not 1 now another 1 in next kill all at the same time 4 items) pls help me thx
5 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.