# (Maximum enchant level allowed for an item to be equipped, -1 to disable)
OlyMaxEnchant = -1
# Restrict some items in olympiad. ItemID's need to be separated whit comma (ex. 1,200,350).
OlyRestrictedItems =
Kai to oly cucle
#Olympiad Properties
#Wed Dec 08 19:00:22 CET 2010
CurrentCycle=3
NextWeeklyChange=1292260308958
OlympiadEnd=1293879600958
Period=0
ValdationEnd=1291720557226
Tha ithela i olumpiad mou na ginete apo tis 6:00 eos tis 8:00 to apogeuma(pano kato to kataferno! alla plz help)
Ki episis thelw na pezeis oly mia ebdomada,ki tin kiriaki to bradi stis 12:00(to pc pou to host einai olandia!!opote help kai me tin ora,exoume mia ora diafora!Otan exoume 6 eutoi exoun 5)na bgenei hero sto kathe class autos me tous perisoterous pontous!!PLZ help me (diladi i olumpiad week na 3ekinaei deutera kai na telionei tin kiriaki)
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
Dev Atlas
Gia sas MAXCHEATERS.Exw ena megalo problem me tin olympiad.
Kai to oly cucle
Tha ithela i olumpiad mou na ginete apo tis 6:00 eos tis 8:00 to apogeuma(pano kato to kataferno! alla plz help)
Ki episis thelw na pezeis oly mia ebdomada,ki tin kiriaki to bradi stis 12:00(to pc pou to host einai olandia!!opote help kai me tin ora,exoume mia ora diafora!Otan exoume 6 eutoi exoun 5)na bgenei hero sto kathe class autos me tous perisoterous pontous!!PLZ help me (diladi i olumpiad week na 3ekinaei deutera kai na telionei tin kiriaki)
3 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.