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
ExCaLiBuR®
geia sas paidia zitisa apo kapoion na me pei pws na bgazei apo mono tou
sta LVL 20 LVL 40 LVL 76
na se bgalei ta class pou exeis
entaksei mou to ekane ena paidi ton opoio ton euxaristw poli alla exw
ena prob
deite screenshot
auto pou exw kuklwsei einai auto pou sas eipa pou me bgaleu ta class
http://img514.yfrog.com/img514/5876/test1o.png
pataw ka ideie
http://img526.yfrog.com/img526/1540/test2u.png
ok me bgazei kai dialegw to class pou thelw afou patisw to
Human Knight
gunomai kanonika
deite screen shot
afou geinw human knight pou einai to class gia lvl 20
den me anoigei to alo gia lvl 40
http://img143.yfrog.com/img143/429/test3.png
ean kanw omws Restart oxi ton server ton paikti tha mou bgalei
kai to class gia lvl 40
kapoios pou kserei na me pei xwris na kanei Rr o char na bgazei na
kaneis kai to clas gia lvl 40
plz re paidia help
6 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.