kalispera 8a h8ela lligaki voi8eia giati psaxnw san ton xazo se ola ta thread kai ola misa ta vriskw!!!
exw merikes erwthseis kai elpizw na me voi8hsete.
loipon arxizw:
1)Ti prepei na kanw gia na mporesei na mpei enas opoiosdhpote apo to spiti tou ston server mou?
2)Ti prepei na ru8misw sta ports wste na exei access? (giati ta ports mou einai anoixta alla oxi me to external ip alla me to internal)
3)Ti prepei na tou dwsw etsi wste na mporesei na mpei kanonika ston server mou?
pros to paron xreiazomai help se afta!!!o server leitourgei kanonikotata kai o allos mporei na mpei kai na paiksei otan einai sto spiti mou kai sundedemenos sto diktyo mou.
(tou exw dwsei to system mou kai mpainei kanonika)
sas euxaristw ek ton proterwn kai elpizw na me voi8hsete gia na mporesw epitelous na shkwsw gia ta kala ton server pou eliwsa gia na ftiaksw.... :'(
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
grigor13
kalispera 8a h8ela lligaki voi8eia giati psaxnw san ton xazo se ola ta thread kai ola misa ta vriskw!!!
exw merikes erwthseis kai elpizw na me voi8hsete.
loipon arxizw:
1)Ti prepei na kanw gia na mporesei na mpei enas opoiosdhpote apo to spiti tou ston server mou?
2)Ti prepei na ru8misw sta ports wste na exei access? (giati ta ports mou einai anoixta alla oxi me to external ip alla me to internal)
3)Ti prepei na tou dwsw etsi wste na mporesei na mpei kanonika ston server mou?
pros to paron xreiazomai help se afta!!!o server leitourgei kanonikotata kai o allos mporei na mpei kai na paiksei otan einai sto spiti mou kai sundedemenos sto diktyo mou.
(tou exw dwsei to system mou kai mpainei kanonika)
sas euxaristw ek ton proterwn kai elpizw na me voi8hsete gia na mporesw epitelous na shkwsw gia ta kala ton server pou eliwsa gia na ftiaksw.... :'(
8 answers to this question
Recommended Posts