Re paidia o valakas / o antharas / o baium / o beleth /o tyranosaurous / o core den douleuoun !!! p.x kano teleport ston valakas... leo ok ok den bgainei epeidi prepei na kano to quest..!! kano to quest mpaino mesa sto valakas lair me to quest tpt!! den kanei spawn (xerete me to video pou bgainei) ton kano ego spawn mesa sto lair of valakas.... pao na to bareso kateu8eian me kanei teleport piso stin goddard!!! ksanapigaino tou kano tin epi8esi root kai anti na mou kanei epi8esi apla ir8e dipla mou k den me barage :S auto akribos mou kanei kai o baium ton barao ego kai autos apla den kanei tpt mono me koitaei k me akolou8ei !!! o antharas me baraei kanonika alla mou bgazei script error otan ton barao !!! o beleth oute pou uparxei ston xoro tou !! o tyranosaurous to idio kai o core episis !! eno i AQ douleuei apsoga!!! ti akribos ginete re paidia plsss pite mou !! 8elo na kano ton server akribos opos ton official sta bosses dld otan bgainei o valakas na mou to deixnei me video !! otan ksupnao to baium na bgainoun kai oi aggeloi !! PLS pite mou ti na kano ....
Xrisimopoio l2jserver (compile) ola douleuoun mia xara mobs npc quests ( exo kanei merika quest p.x sub na to testaro douleue teleia kai to nobless kai gia to pagan temple to quest k gia to valakas kai merika alla ) kai exo epilogue !!
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
manos2864
Re paidia o valakas / o antharas / o baium / o beleth /o tyranosaurous / o core den douleuoun !!! p.x kano teleport ston valakas... leo ok ok den bgainei epeidi prepei na kano to quest..!! kano to quest mpaino mesa sto valakas lair me to quest tpt!! den kanei spawn (xerete me to video pou bgainei) ton kano ego spawn mesa sto lair of valakas.... pao na to bareso kateu8eian me kanei teleport piso stin goddard!!! ksanapigaino tou kano tin epi8esi root kai anti na mou kanei epi8esi apla ir8e dipla mou k den me barage :S auto akribos mou kanei kai o baium ton barao ego kai autos apla den kanei tpt mono me koitaei k me akolou8ei !!! o antharas me baraei kanonika alla mou bgazei script error otan ton barao !!! o beleth oute pou uparxei ston xoro tou !! o tyranosaurous to idio kai o core episis !! eno i AQ douleuei apsoga!!! ti akribos ginete re paidia plsss pite mou !! 8elo na kano ton server akribos opos ton official sta bosses dld otan bgainei o valakas na mou to deixnei me video !! otan ksupnao to baium na bgainoun kai oi aggeloi !! PLS pite mou ti na kano ....
Xrisimopoio l2jserver (compile) ola douleuoun mia xara mobs npc quests ( exo kanei merika quest p.x sub na to testaro douleue teleia kai to nobless kai gia to pagan temple to quest k gia to valakas kai merika alla ) kai exo epilogue !!
24 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.