Kalhmera paides, exw ena provlima me to Super Haste lvl 4 kai tous Hero. To Super Haste otan to paw lvl 4 den antapokrinete, to buff fenete stin mpara alla den kanei tipota. Sto lvl 3 to skill einai kanonika enw ama to paw lvl 4 peftoun ola san na min exw kan super haste, pws mporw na to ftiaksw na leitourgei?
Hero Problem: Eixa enan tipa ston server pou vgike hero me 8 games kai 150 points (w00t?) o opios apodixtike bugger alla kai cheater (min me rwtate pws den exw idea.) O Sigkekrimenos charr egine delete kai ban account fisika alla o 2os pou itan stin oly oso nane ton lipame kai thelw na tou dwsw to hero. Iparxei entolh na dwsw se enan sigkekrimeno Hero status?
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
k00k00
Kalhmera paides, exw ena provlima me to Super Haste lvl 4 kai tous Hero. To Super Haste otan to paw lvl 4 den antapokrinete, to buff fenete stin mpara alla den kanei tipota. Sto lvl 3 to skill einai kanonika enw ama to paw lvl 4 peftoun ola san na min exw kan super haste, pws mporw na to ftiaksw na leitourgei?
Hero Problem: Eixa enan tipa ston server pou vgike hero me 8 games kai 150 points (w00t?) o opios apodixtike bugger alla kai cheater (min me rwtate pws den exw idea.) O Sigkekrimenos charr egine delete kai ban account fisika alla o 2os pou itan stin oly oso nane ton lipame kai thelw na tou dwsw to hero. Iparxei entolh na dwsw se enan sigkekrimeno Hero status?
Exw l2jServer Epilogue Compiled
12 answers to this question
Recommended Posts