-
Posts
851 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Sighed
-
Use this Skill_pch Skill_pch2 and Skilldata Breakdown http://www.maxcheaters.com/forum/index.php?topic=150850.0
-
(HELP) Invalid Sunrise Time
Sighed replied to panchio's question in Request Server Development Help [L2OFF]
Delete this post, some error posted this in wrong place -
Share skill_pch / skill_pch2 / skilldata
Sighed posted a topic in Server Development Discussion [L2OFF]
SKILL_PCH [sKILL NAME] = ID [s_hurricane11] = 317185 SKILL_PCH2 317185 900 0 34 3 -360 11 -1 0 4 2 1 -12345 317185 = PCH_ID "[The Skill's PCH ID]" 900 = Casting_Range "[Range of skill or spell]" 0 = HP_Consume "[self explanatory]" 34 = MP_Consume2 "[MP_Consume1 is for skill activation, and it is not mentioned here]" 3 = Target_Type "[0: Self, 1: Target, 3: Enemy, 4: Enemy_Only, 5: Item, 6: Summon, 7: Holything, 9: Door_Treasure, 10: PC_Body(dead), 11: NPC_Body(dead)]" -360 = Effect_Point [] 11 = Attribute -1 = Abnormal_Type 0 = Abnormal_Lv 4 = Skill_Hit_Time [1.5=2, leave at default at all times] 2 = Reuse_Delay [Reuse_Delay - (Skill_Hit_Time - Skill_Hit_Cancel_Time)] 1 = Is_Magic [Values 0-1] Attributes: 0 = None 9 = Attr_Earth 10 = Attr_Water 11 = Attr_Wind 12 = Attr_Fire 13 = Attr_Poison 15 = Attr_Hold 17 = Attr_Sleep 18 = Attr_Shock 19 = Attr_Derangement 20 = Attr_Unholy 26 = Attr_Paralyze 29 = Attr_None Abnormal_types -1 = None 0 = PA_Up 1 = PA_Up_Special 2 = PA_Down 3 = PD_Up 4 = PD_Up_Special 5 = PD_Down 6 = Ma_Up 7 = MD_Up 8 = MD_Up_Attr 9 = Avoid_Up 10 = Avoid_Up_Special 11 = Hit_Up 12 = Hit_Down 13 = Fatal_Poison 14 = Fly_Away 15 = Turn_Stone 16 = Casting_Time_Down 17 = Attack_Time_Down 18 = Speed_Up 19 = Possession 20 = Attack_Time_Up 21 = Speed_Down 22 = HP_Regen_Up 23 = Max_MP_Up 24 = Antaras_Debuff 25 = Critical_Prob_Up 26 = Cancel_Prob_Down 28 = Max_Breath_Up 29 = Decrease_Weight_Penalty 30 = Poison 31 = Bleeding 32 = DOT_Attr 34 = Dmg_Shield 35 = Ab_Hawk_Eye 36 = Resist_Shock 37 = Paralyze 38 = Public_Slot 39 = Silence 41 = Stun 42 = Resist_Poison 43 = Resist_Derangement 44 = Resist_Spiritless 45 = MP_Regen_Up 46 = MD_Down 55 = Turn_Passive 56 = Turn_Flee 60 = HP_Recover 61 = MP_Recover 63 = Root 64 = Speed_Up_Special 65 = Majesty 66 = PD_Up_Bow 67 = Attack_Speed_Up_Bow 68 = Max_HP_Up 69 = Holy_Attack 70 = Sleep 71 = Berserker 72 = PA_Up 73 = Life_Force 74 = Song_of_Earth 75 = Song_of_Life 76 = Song_of_Water 77 = Song_of_Warding 78 = Song_of_Wind 79 = Song_of_Hunter 80 = Song_of_Invocation 81 = Dance_of_Warrior 82 = Dance_of_Inspiration 83 = Dance_of_Mystic 84 = Dance_of_Fire 85 = Dance_of_Fury 86 = Dance_of_Concentration 87 = Dance_of_Light 88 = Detect_Weakness 89 = Thrill_Fight 90 = Resist_Bleeding 91 = Critical_Dmg_Up 92 = Shield_Prob_Up 93 = HP_Regen_Down 94 = Reuse_Delay_Up Extra Operate_Type = A1 (Active skill 1; Skills with instant effect) Operate_Type = A2 (Active skill 2; Skills with Over Time effect. Such as Heal over Time, Damage over Time, and buffs. *tick tock timer* *countdown*) Operate_Type = P [Passive skill] Operate_Type = T [Toggle] Enjoy Reading And Learning, Good Luck With Your Server Guys. -
(HELP) Invalid Sunrise Time
Sighed replied to panchio's question in Request Server Development Help [L2OFF]
Just use the button to set the time before server finish loading and it will be fine, i write 7:00 and it works fine. -
[help]L2Control Panel for C6 or l2admin
Sighed replied to mjst's question in Request Server Development Help [L2OFF]
Try This http://info.l2online.net/ Its called L2z. Search on Google Code there is a SVN Host with its Sources. -
Skilldata.txt Find and Check Fake Death.
-
Simple, dVampire don't has only IL Extender, IL and HB.
-
1St use the Modify button, and don't double or triple post. You will be Warned. This can cause your ban so be careful. The first thing, LogD is cause you dont point a lin2log DSN to a lin2log DB, you know, default table lin2log not lin2db (i saw ppl with it.) The Max Time For AsyncEnterWorld is caused by the fact that the server is unable to cope with the influx of data. And hellbound_point, fix it with this: REATE TABLE [dbo].[hellbound_point] ( [point] [int] NOT NULL DEFAULT 0 ) ON [PRIMARY] GO ALTER TABLE user_data ADD reputation_point int NULL DEFAULT 0; GO if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[lin_GetUserDataByCharId]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[lin_GetUserDataByCharId] GO CREATE PROCEDURE dbo.lin_GetUserDataByCharId ( @char_id INT ) AS SET NOCOUNT ON DECLARE @acc NVARCHAR(50) set @acc=(select account_name from user_data where char_id=@char_id) IF @char_id > 0 SELECT RTRIM(ud.char_name), ud.char_id, RTRIM(ud.account_name), ud.account_id, ud.pledge_id, ud.builder, ud.gender, ud.race, ud.class, ud.world, ud.xloc, ud.yloc, ud.zloc, ud.IsInVehicle, ud.HP, ud.MP, ud.Max_HP, ud.Max_MP, ud.CP, ud.Max_CP, ud.SP, ud.Exp, ud.Lev, ud.align, ud.PK, ud.duel, ud.pkpardon, ud.ST_underware, ud.ST_right_ear, ud.ST_left_ear, ud.ST_neck, ud.ST_right_finger, ud.ST_left_finger, ud.ST_head, ud.ST_right_hand, ud.ST_left_hand, ud.ST_gloves, ud.ST_chest, ud.ST_legs, ud.ST_feet, ud.ST_back, ud.ST_both_hand, ud.ST_hair, ISNULL(YEAR(temp_delete_date),0), ISNULL(MONTH(temp_delete_date),0), ISNULL(DAY(temp_delete_date),0), ISNULL(DATEPART(HOUR, temp_delete_date),0), ISNULL(DATEPART(mi, temp_delete_date),0), ISNULL(DATEPART(s, temp_delete_date),0), ISNULL(uas.s1, 0), ISNULL(uas.l1, 0), ISNULL(uas.d1, 0), ISNULL(uas.c1, 0), ISNULL(uas.s2, 0), ISNULL(uas.l2, 0), ISNULL(uas.d2, 0), ISNULL(uas.c2, 0), ISNULL(uas.s3, 0), ISNULL(uas.l3, 0), ISNULL(uas.d3, 0), ISNULL(uas.c3, 0), ISNULL(uas.s4, 0), ISNULL(uas.l4, 0), ISNULL(uas.d4, 0), ISNULL(uas.c4, 0), ISNULL(uas.s5, 0), ISNULL(uas.l5, 0), ISNULL(uas.d5, 0), ISNULL(uas.c5, 0), ISNULL(uas.s6, 0), ISNULL(uas.l6, 0), ISNULL(uas.d6, 0), ISNULL(uas.c6, 0), ISNULL(uas.s7, 0), ISNULL(uas.l7, 0), ISNULL(uas.d7, 0), ISNULL(uas.c7, 0), ISNULL(uas.s8, 0), ISNULL(uas.l8, 0), ISNULL(uas.d8, 0), ISNULL(uas.c8, 0), ISNULL(uas.s9, 0), ISNULL(uas.l9, 0), ISNULL(uas.d9, 0), ISNULL(uas.c9, 0), ISNULL(uas.s10, 0), ISNULL(uas.l10, 0), ISNULL(uas.d10, 0), ISNULL(uas.c10, 0), ISNULL(uas.s11, 0), ISNULL(uas.l11, 0), ISNULL(uas.d11, 0), ISNULL(uas.c11, 0), ISNULL(uas.s12, 0), ISNULL(uas.l12, 0), ISNULL(uas.d12, 0), ISNULL(uas.c12, 0), ISNULL(uas.s13, 0), ISNULL(uas.l13, 0), ISNULL(uas.d13, 0), ISNULL(uas.c13, 0), ISNULL(uas.s14, 0), ISNULL(uas.l14, 0), ISNULL(uas.d14, 0), ISNULL(uas.c14, 0), ISNULL(uas.s15, 0), ISNULL(uas.l15, 0), ISNULL(uas.d15, 0), ISNULL(uas.c15, 0), ISNULL(uas.s16, 0), ISNULL(uas.l16, 0), ISNULL(uas.d16, 0), ISNULL(uas.c16, 0), ISNULL(uas.s17, 0), ISNULL(uas.l17, 0), ISNULL(uas.d17, 0), ISNULL(uas.c17, 0), ISNULL(uas.s18, 0), ISNULL(uas.l18, 0), ISNULL(uas.d18, 0), ISNULL(uas.c18, 0), ISNULL(uas.s19, 0), ISNULL(uas.l19, 0), ISNULL(uas.d19, 0), ISNULL(uas.c19, 0), ISNULL(uas.s20, 0), ISNULL(uas.l20, 0), ISNULL(uas.d20, 0), ISNULL(uas.c20, 0), ud.quest_flag, ud.face_index, ud.hair_shape_index, ud.hair_color_index, ud.nickname, ud.power_flag, ud.pledge_dismiss_time, ud.pledge_ousted_time, ud.pledge_withdraw_time, ud.surrender_war_id, ud.use_time, ud.drop_exp, ISNULL( ub.status, 0), ISNULL( ub.ban_end , 0), ISNULL(ud.subjob_id , 0), ud.subjob0_class, ud.subjob1_class, ud.subjob2_class, ud.subjob3_class, ISNULL(ssq_dawn_round, 0), ISNULL(uun.color_rgb, 0x00ffffff),ISNULL(ud.wedding,0),ud.division,ud.pledge_group,ud.AcademyLev,ud.KarmaOrig,ud.PKdiff,ud.ST_face,ud.CursedTimeEquip,ISNULL(ud.TitleColor,0x00ffffff),ud.WeddingTelTime, ISNULL(dyn.adena_drop,1),ISNULL(dyn.items_drop,1),ISNULL(dyn.spoil,1),ISNULL(dyn._exp,1),ISNULL(dyn._sp,1),ISNULL(SponsorId,0), ISNULL(uas.s21, 0), ISNULL(uas.l21, 0), ISNULL(uas.d21, 0), ISNULL(uas.c21, 0), ISNULL(uas.s22, 0), ISNULL(uas.l22, 0), ISNULL(uas.d22, 0), ISNULL(uas.c22, 0), ISNULL(uas.s23, 0), ISNULL(uas.l23, 0), ISNULL(uas.d23, 0), ISNULL(uas.c23, 0), ISNULL(uas.s24, 0), ISNULL(uas.l24, 0), ISNULL(uas.d24, 0), ISNULL(uas.c24, 0), ud.ST_left_bracelet,ud.ST_right_bracelet,ud.ST_hairall,ud.ST_agathon,ud.souls,ud.transformation_id,ud.talisman1,ud.talisman2,ud.talisman3,ud.talisman4,ud.talisman5,ud.talisman6, ISNULL(uas.s25, 0), ISNULL(uas.l25, 0), ISNULL(uas.d25, 0), ISNULL(uas.c25, 0), ISNULL(uas.s26, 0), ISNULL(uas.l26, 0), ISNULL(uas.d26, 0), ISNULL(uas.c26, 0), ISNULL(uas.s27, 0), ISNULL(uas.l27, 0), ISNULL(uas.d27, 0), ISNULL(uas.c27, 0), ISNULL(uas.s28, 0), ISNULL(uas.l28, 0), ISNULL(uas.d28, 0), ISNULL(uas.c28, 0), ISNULL(uas.s29, 0), ISNULL(uas.l29, 0), ISNULL(uas.d29, 0), ISNULL(uas.c29, 0), ISNULL(uas.s30, 0), ISNULL(uas.l30, 0), ISNULL(uas.d30, 0), ISNULL(uas.c30, 0), ISNULL(uas.s31, 0), ISNULL(uas.l31, 0), ISNULL(uas.d31, 0), ISNULL(uas.c31, 0), ISNULL(uas.s32, 0), ISNULL(uas.l32, 0), ISNULL(uas.d32, 0), ISNULL(uas.c32, 0), ISNULL(uas.s33, 0), ISNULL(uas.l33, 0), ISNULL(uas.d33, 0), ISNULL(uas.c33, 0), ISNULL(uas.s34, 0), ISNULL(uas.l34, 0), ISNULL(uas.d34, 0), ISNULL(uas.c34, 0), ISNULL(uas.s35, 0), ISNULL(uas.l35, 0), ISNULL(uas.d35, 0), ISNULL(uas.c35, 0), ISNULL(uas.s36, 0), ISNULL(uas.l36, 0), ISNULL(uas.d36, 0), ISNULL(uas.c36, 0), ISNULL(uas.s37, 0), ISNULL(uas.l37, 0), ISNULL(uas.d37, 0), ISNULL(uas.c37, 0), ISNULL(uas.s38, 0), ISNULL(uas.l38, 0), ISNULL(uas.d38, 0), ISNULL(uas.c38, 0), ISNULL(uas.s39, 0), ISNULL(uas.l39, 0), ISNULL(uas.d39, 0), ISNULL(uas.c39, 0), ISNULL(uas.s40, 0), ISNULL(uas.l40, 0), ISNULL(uas.d40, 0), ISNULL(uas.c40, 0), ISNULL(reputation_point,0) FROM (SELECT * FROM User_data (nolock) WHERE char_id = @char_id) AS ud LEFT OUTER JOIN (SELECT * FROM user_ActiveSkill (nolock) WHERE char_id = @char_id) as uas ON ud.char_id = uas.char_id left OUTER JOIN (select * from user_ban (nolock) where char_id = @char_id) as ub on ud.char_id = ub.char_id left OUTER JOIN (select * from user_name_color (nolock) where char_id = @char_id) as uun on ud.char_id = uun.char_id left OUTER JOIN (select * from dynamic_rates (nolock) where acc_name=@acc) as dyn on @acc=dyn.acc_name GO
-
Wrong Post Section, this is l2off not L2J
-
You should use L2FileEdit, its much easier.
-
If you are using a retail c4, it should be working without problems, but if you use an extender, some stuff won't work properly or cause they aren't extended properly, or they don't suffer a revision from years.
-
No, it means you have no LogD server part, most packs dont include it, and some of them don't include too the l2comm server part.
-
Best Interlude Files Pack
Sighed replied to panchio's question in Request Server Development Help [L2OFF]
Yeah it depends what you ask from them, if you directly say, i want to buy, and you send the data that they request, they will answer almost inmediatly, but if you make any other question, dont expect any answer :D -
[HELP] Finding Dvampire website.
Sighed replied to kanziguy's question in Request Server Development Help [L2OFF]
You cannot contact dVampire, only resellers, one of them are l2ds.org -
[Help]any1 know Sabotage64.dll?
Sighed replied to sandeagle's question in Request Server Development Help [L2OFF]
Where you found that ? if its something injected in a pack it could be a backdoor, i think is a backdoor, well the word sabotage sounds like. -
Best Interlude Files Pack
Sighed replied to panchio's question in Request Server Development Help [L2OFF]
Anyway, l2ds.org are resellers lol -
Best Interlude Files Pack
Sighed replied to panchio's question in Request Server Development Help [L2OFF]
There is no way for contacting dvamp directly i think, you can find resellers. -
The thing is that after all everyone will share someone work, and others will smile and other will get angry cause someone cracked his work. Shit Happens.
-
[HELP] L2 Account ZS 2.0 Probelm
Sighed replied to binar's question in Request Server Development Help [L2OFF]
Simple, in your php.ini there is a commented line ";" about mssql, you have to uncomment (deleting the ";" symbol) it and restart apache. -
WTS [WTS]INTERLUDE PACK FIXED 100%
Sighed replied to ~Pants0*~'s topic in Marketplace [L2Packs & Files]
Owned :D NcSoft Milestone : http://www.ncsoft.net/global/aboutus/milestone.aspx NcSoft History : http://www.ncsoft.net/global/aboutus/nchistory.aspx In October 2003 Lineage II was launched in Korea, so i doubt that you made servers from 2000 ;D -
gracia final [L2J|L2OFF] Lineage 2 PVP server FireAngelEmpire
Sighed replied to deadworldisee's topic in Private Servers
L2J with L2Off implementations ? hahahaha complete bullshit xD -
Looking for Ai.obj / Script Editor for L2MxC.com!
Sighed replied to Maxtor's question in Request Server Development Help [L2OFF]
You need a program or someone for doing it ? If its a program you just need a Notepad and read lines in the scripts. For AI its different, you need a decompiler to take it to NASC code, and a compiler for compiling it into a .obj file. -
[Question]Wtf is vampire's dll
Sighed replied to Thelasthero's question in Request Server Development Help [L2OFF]
Its a guy from russia, a PostPacific member, that has his own extender project. -
[Question] Post-Pacific
Sighed replied to Simmo's question in Request Server Development Help [L2OFF]
PostPacfic has been hacked some time ago, and now sometimes its down. Why ? I don't know. -
[HELP_FAST]Please look fast.
Sighed replied to Thelasthero's question in Request Server Development Help [L2OFF]
You MUST setup the ODBC correctly, you should setup the TCP/IP connections using SQL Server Surface Area Configuration. P.S: Don't use Express version use Enterprise, cause Express has very limited functions. I think your problem is ODBC configuration.
