geia sas paides einai to prwto mou topic sto forum auto opote an ekana kapoio lathos sorry stous admin.... Loipon prin liges meres mou karfwthike na kanw enan server sto l2 kai to epsaksa polu to thema kai to forum auto me voitise para polu opote euxaristw kai giauto. To problem mou omws einai ws pros kapoies leptomereies pou prepei na kanw twra, giauto opoios mporei as me boithisei ligo. As ksekinisw
1) pws tha allaksw onoma tou server kai na valw to onoma tis epilogis mou (kai to onoma tou Bartz as poume na to kanw na leei kati allo)
2) poia arxeia prepei na dwsw se allous upologistes wste na ton dinw ton server stous filous mou kai na mpainoun kai autoi gia na kanoume xavale (eksalou giauto to ekana kuriws)
3) pws tha allaksw ta stats tou server (exp,sp,adena drop,items drop ktl) kai na meinoun giati otan prospathisa apo to admin panel meta to restart allaksan
4) pws mporw na valw custom items kai na valw timi se auta (as poume me gold bars) alla kai tautoxrona na prosthesw ta items auta se eidiko gmshop
5) telos pws tha valw class changer wste na ginontai ta quest class automata
sorry an einai polu noobistikes oi erwtiseis alla einai i prwti mou prospatheia gia na kanw server.....Euxaristw se opoion asxoleithei me to topic mou....
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
moulios
geia sas paides einai to prwto mou topic sto forum auto opote an ekana kapoio lathos sorry stous admin.... Loipon prin liges meres mou karfwthike na kanw enan server sto l2 kai to epsaksa polu to thema kai to forum auto me voitise para polu opote euxaristw kai giauto. To problem mou omws einai ws pros kapoies leptomereies pou prepei na kanw twra, giauto opoios mporei as me boithisei ligo. As ksekinisw
1) pws tha allaksw onoma tou server kai na valw to onoma tis epilogis mou (kai to onoma tou Bartz as poume na to kanw na leei kati allo)
2) poia arxeia prepei na dwsw se allous upologistes wste na ton dinw ton server stous filous mou kai na mpainoun kai autoi gia na kanoume xavale (eksalou giauto to ekana kuriws)
3) pws tha allaksw ta stats tou server (exp,sp,adena drop,items drop ktl) kai na meinoun giati otan prospathisa apo to admin panel meta to restart allaksan
4) pws mporw na valw custom items kai na valw timi se auta (as poume me gold bars) alla kai tautoxrona na prosthesw ta items auta se eidiko gmshop
5) telos pws tha valw class changer wste na ginontai ta quest class automata
sorry an einai polu noobistikes oi erwtiseis alla einai i prwti mou prospatheia gia na kanw server.....Euxaristw se opoion asxoleithei me to topic mou....
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.