xereto tin parea tou forum! katarxas tha ithela na po oti eimai newbie entelos kai anoixa proti fora server. to proto m erotima einai to eksis. akolouthisa mia diadikasia p elege ena paidi sto pws bazoume ton buffer arxika patao execute batch file kai ta lipa kai m bgazei auto Finished Unsuccessfuly... to cilent p xrisimopio einai gracia final sxetika me to pack dn ksero kan ti pack einai egw aplos akolouthisa to topic p elege pos ftiaxnoume gracia final tis papaditsa. epipleon mia erotisi p tha ithela na kano einai pos boro na adaro weapons ston server m. kai telos mia teleftea erotisi pos boroun na benoun kai alloi ston server m. egw auto p kano einai to eksis pao sto l2file edit kai meta pao ston gracia beno sto system kai anoigo to l2 ini kai bazo 127.0.0.1 kai aplos beno ston server. tora ti prepei na kano oste na benoun kai alloi? tora dn ksero an exoun xilio ksana ipothei autes oi erotiseis p rotisa sas zito signomi an exoun ksana ipothei. aplos mono stin diadikasia na bo kai na arxiso na psaxno m fenete tromaktiki gt xanome se tosa pragmata eilikrina. opoios borei na me dieukolinei kai thelei na kanei ton kopo na m apantisei as to kanei... sas euxaristo kai pali...
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
kampias
xereto tin parea tou forum! katarxas tha ithela na po oti eimai newbie entelos kai anoixa proti fora server. to proto m erotima einai to eksis. akolouthisa mia diadikasia p elege ena paidi sto pws bazoume ton buffer arxika patao execute batch file kai ta lipa kai m bgazei auto Finished Unsuccessfuly... to cilent p xrisimopio einai gracia final sxetika me to pack dn ksero kan ti pack einai egw aplos akolouthisa to topic p elege pos ftiaxnoume gracia final tis papaditsa. epipleon mia erotisi p tha ithela na kano einai pos boro na adaro weapons ston server m. kai telos mia teleftea erotisi pos boroun na benoun kai alloi ston server m. egw auto p kano einai to eksis pao sto l2file edit kai meta pao ston gracia beno sto system kai anoigo to l2 ini kai bazo 127.0.0.1 kai aplos beno ston server. tora ti prepei na kano oste na benoun kai alloi? tora dn ksero an exoun xilio ksana ipothei autes oi erotiseis p rotisa sas zito signomi an exoun ksana ipothei. aplos mono stin diadikasia na bo kai na arxiso na psaxno m fenete tromaktiki gt xanome se tosa pragmata eilikrina. opoios borei na me dieukolinei kai thelei na kanei ton kopo na m apantisei as to kanei... sas euxaristo kai pali...
1 answer 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.