Hello, i made a pack l2java and chronicle Freya. I am new developer only few months but with huge knowledge on L2j.
I am web designer and 3D modeller-photoshop-video fan and creator.
I am searching someone (not brainless and selfish silly child) who has SERVER MACHINE on his HOME
and he/she is interesting in take part in a l2j project.
The point is that i have the pack (it's semi-ready) i have the website and whatever we need but i can't waste money
paying 30-60/m to remote servers. So how it goes if someone has a server on his house (more than 3 GB ram and 1.5 upload speed internet connection and good uptime at least 99%)
pm me here or add me on skype: unst0ppabl32 we could chat and become parthers on this server.
We can speak for rates-npc's-customs- and what codes should be removed or replaced.
Appreciate any help or suggestion and waiting your responde.
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
WolfGiaS3na
Hello, i made a pack l2java and chronicle Freya. I am new developer only few months but with huge knowledge on L2j.
I am web designer and 3D modeller-photoshop-video fan and creator.
I am searching someone (not brainless and selfish silly child) who has SERVER MACHINE on his HOME
and he/she is interesting in take part in a l2j project.
The point is that i have the pack (it's semi-ready) i have the website and whatever we need but i can't waste money
paying 30-60/m to remote servers. So how it goes if someone has a server on his house (more than 3 GB ram and 1.5 upload speed internet connection and good uptime at least 99%)
pm me here or add me on skype: unst0ppabl32 we could chat and become parthers on this server.
We can speak for rates-npc's-customs- and what codes should be removed or replaced.
Appreciate any help or suggestion and waiting your responde.
Regards, WolfGiaS3na
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Καλησπερα εφτιαξα ενα Freya l2j pack και ζηταω καποιον ο οποιος να εχει Σερβερ σπιτι του (τουλαχιστον 3 gb ram και 1.5 upload speed με 99% uptime)
να δουλεψουμε μαζι στο pack. Ειμαι νεος developer και ασχολουμε με 3D εφε - εικονες - ηχο - και ιστοσελιδες. Γνωριζω σχεδον τα παντα γυρω απο l2j.
Σκοπος του topic αυτου ειναι να βρω καποιος (τουλαχιστον με καποιον που να μπορω να μιλησω σοβαρα και να μην ειναι αφελη παιδακι) και να
συζητησουμε ποια θα ειναι τα rates ποια custom πρεπει να περαστουν ποια npc πρεπει να εχει και γενικα την δομη του σερβερ....
Παρακαλω πολυ αν εχετε καποιον σερβερ στο σπιτι σας και ενδιαφερεστε να συνεργαστουμε αφηστε μυνημα εδω
η καντεμε αδδ στο σκυπε: unst0ppabl32
Ευχαριστω πολυ
Edited by WolfGiaS3na2 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.