|
You last visited: Today at 23:57
Advertisement
[Help Thread] Please post your questions here.
Discussion on [Help Thread] Please post your questions here. within the Rappelz Private Server forum part of the Rappelz category.
05/31/2012, 09:42
|
#661
|
elite*gold: 0
Join Date: May 2011
Posts: 20
Received Thanks: 2
|
Hello Guys I need UR HElp ! Who can Tell me How I can Repair master classs Quest .
Thnak You
|
|
|
05/31/2012, 10:11
|
#662
|
elite*gold: 0
Join Date: Aug 2011
Posts: 7
Received Thanks: 0
|
Quote:
Originally Posted by xlapeto94
Hello Guys I need UR HElp ! Who can Tell me How I can Repair master classs Quest .
Thnak You
|
If you are using Infinite 7.3 files, try adding mobs to spawn list. I've stucked on zealot quests, spawned Them correctly and questline goes on correctly until had problem with two statues near Light Pope Lucian. I've tried searching/adding quest item with no luck, so at this moment i'm waiting for better fix/answer...
|
|
|
05/31/2012, 10:14
|
#663
|
elite*gold: 0
Join Date: Sep 2008
Posts: 1,606
Received Thanks: 1,210
|
Quote:
Originally Posted by Dragon171
If you are using Infinite 7.3 files, try adding mobs to spawn list. I've stucked on zealot quests, spawned Them correctly and questline goes on correctly until had problem with two statues near Light Pope Lucian. I've tried searching/adding quest item with no luck, so at this moment i'm waiting for better fix/answer...
|
...Instead of waiting you can use the search button...your mapfiles are outdated which is described in a lot of threads
Go to Rappelz Download Center and download the NCarbon Dumper. Dump the Mapfiles from your Client and put them in the newmap folder.
|
|
|
05/31/2012, 13:54
|
#664
|
elite*gold: 0
Join Date: Aug 2011
Posts: 2
Received Thanks: 0
|
I want to add the lydin sklls but how? I download xijezu resource editor but whem i load skill tree it give me a uncorrect sentenses
|
|
|
05/31/2012, 14:22
|
#665
|
elite*gold: 0
Join Date: Sep 2008
Posts: 1,606
Received Thanks: 1,210
|
Xijezus Resource Editor (public version) is too old you can't open 7.4 Files in it. You have to develop your own tool...or wait till somebody will give you the correct tables...or wait till someone will share the tables
|
|
|
05/31/2012, 17:17
|
#666
|
elite*gold: 0
Join Date: Jan 2012
Posts: 102
Received Thanks: 2
|
Hey c1ph3r 
Can u tell me how can i change prices in NPC's please ???? Item by item , and not with :
Quote:
USE Arcadia
GO
UPDATE dbo.MarketResource
SET price_ratio=0.400 change to raise/lower the prices
WHERE price_ratio>0.0000
|
And how can i add new Items into NPC ?? THanks in advance . i searched but i can't found a good Answer .
|
|
|
05/31/2012, 17:44
|
#667
|
elite*gold: 0
Join Date: Sep 2008
Posts: 1,606
Received Thanks: 1,210
|
Quote:
Originally Posted by OmegaStars
Hey c1ph3r 
Can u tell me how can i change prices in NPC's please ???? Item by item , and not with :
And how can i add new Items into NPC ?? THanks in advance . i searched but i can't found a good Answer .
|
You have to know the item id of the item!
Code:
USE Arcadia
GO
UPDATE dbo.MarketResource
SET price_ratio=0.400 change to raise/lower the prices
WHERE code=[I]your_item_id[/I]
If you don't know the item id you can search it with this query:
Code:
SELECT STRING.value, ITEM.id
FROM dbo.ItemResource as ITEM
LEFT JOIN dbo.StringResource as STRING
on STRING.code=ITEM.name_id
WHERE STRING.value like '%ITEM_NAME%'
Replace ITEM_NAME with the name of the Item.
Example:
Code:
SELECT STRING.value, ITEM.id
FROM dbo.ItemResource as ITEM
LEFT JOIN dbo.StringResource as STRING
on STRING.code=ITEM.name_id
WHERE STRING.value like '%Baron Madius card%'
You need a readable StringResource in your DB to use this query! You can use NCarbon Dumper to dumpt the db_string.rdb out of your client. Next you can use the String Editor to import the db_string.rdb into your Arcadia.
|
|
|
05/31/2012, 18:14
|
#668
|
elite*gold: 0
Join Date: Aug 2011
Posts: 7
Received Thanks: 0
|
Quote:
Originally Posted by c1ph3r
Don't really know why you want to add states 314091-314093 again because they are allready in the infinite db. And there is still one missing id in your insert script.
Code:
INSERT [dbo].[StateResource] ([state_id], [text_id], [tooltip_id], [is_harmful], [state_time_type], [state_group], [duplicate_group_1], [duplicate_group_2], [duplicate_group_3], [uf_avatar], [uf_summon], [uf_monster], [reiteration_count], [base_effect_id], [fire_interval], [elemental_type], [amplify_base], [amplify_per_skl], [add_damage_base], [add_damage_per_skl], [effect_type], [value_0], [value_1], [value_2], [value_3], [value_4], [value_5], [value_6], [value_7], [value_8], [value_9], [value_10], [value_11], [value_12], [value_13], [value_14], [value_15], [value_16], [value_17], [value_18], [value_19], [icon_id], [icon_file_name], [fx_id], [pos_id], [cast_skill_id], [cast_fx_id], [cast_fx_pos_id], [hit_fx_id], [hit_fx_pos_id], [special_output_timing_id], [special_output_fx_id], [special_output_fx_pos_id], [special_output_fx_delay], [state_fx_id], [state_fx_pos_id]) VALUES (314069, 30314069, 60314069, N'0', 1, 0, 0, 0, 0, N'1', N'1', N'1', 0, 0, 0, 0, CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), 0, 0, 2, CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(12288.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.060 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), 20009, N'icon_skill_act_penetration_focus_conditionditionion', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
INSERT [dbo].[StateResource] ([state_id], [text_id], [tooltip_id], [is_harmful], [state_time_type], [state_group], [duplicate_group_1], [duplicate_group_2], [duplicate_group_3], [uf_avatar], [uf_summon], [uf_monster], [reiteration_count], [base_effect_id], [fire_interval], [elemental_type], [amplify_base], [amplify_per_skl], [add_damage_base], [add_damage_per_skl], [effect_type], [value_0], [value_1], [value_2], [value_3], [value_4], [value_5], [value_6], [value_7], [value_8], [value_9], [value_10], [value_11], [value_12], [value_13], [value_14], [value_15], [value_16], [value_17], [value_18], [value_19], [icon_id], [icon_file_name], [fx_id], [pos_id], [cast_skill_id], [cast_fx_id], [cast_fx_pos_id], [hit_fx_id], [hit_fx_pos_id], [special_output_timing_id], [special_output_fx_id], [special_output_fx_pos_id], [special_output_fx_delay], [state_fx_id], [state_fx_pos_id]) VALUES (314060, 30314060, 60314060, N'0', 1, 0, 0, 0, 0, N'1', N'1', N'1', 0, 0, 0, 0, CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), 0, 0, 1, CAST(2048.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(6.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), 20009, N'icon_condition_0011_light_darkness_conditiontionion', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
INSERT [dbo].[StateResource] ([state_id], [text_id], [tooltip_id], [is_harmful], [state_time_type], [state_group], [duplicate_group_1], [duplicate_group_2], [duplicate_group_3], [uf_avatar], [uf_summon], [uf_monster], [reiteration_count], [base_effect_id], [fire_interval], [elemental_type], [amplify_base], [amplify_per_skl], [add_damage_base], [add_damage_per_skl], [effect_type], [value_0], [value_1], [value_2], [value_3], [value_4], [value_5], [value_6], [value_7], [value_8], [value_9], [value_10], [value_11], [value_12], [value_13], [value_14], [value_15], [value_16], [value_17], [value_18], [value_19], [icon_id], [icon_file_name], [fx_id], [pos_id], [cast_skill_id], [cast_fx_id], [cast_fx_pos_id], [hit_fx_id], [hit_fx_pos_id], [special_output_timing_id], [special_output_fx_id], [special_output_fx_pos_id], [special_output_fx_delay], [state_fx_id], [state_fx_pos_id]) VALUES (314061, 30314061, 60314061, N'0', 1, 0, 0, 0, 0, N'1', N'1', N'1', 0, 0, 0, 0, CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), 0, 0, 1, CAST(4096.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(-6.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(13, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), CAST(0.000 AS Decimal(12, 3)), 20009, N'icon_condition_0012_light_darkness_conditiontionion', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
|
I've searched whole forum for tip about bugged Mercenary skill Immorality and bugged Deadeye skill Frozen Arrows. Added this states and yes, it fixed Oracle buff Rapture (Yay!) anyone got answer about two others? Tried to fix skills in db-still bugged two last skills... I'm using ,,Infinite files working 100%'' modified 2012-04-27 and rest of this is working perfectly... (sry for my eng)
Edit: Now Deadeye slow arrow buffs shows correctly-but stil client dc after around 5-10 shots
|
|
|
05/31/2012, 19:58
|
#669
|
elite*gold: 0
Join Date: Jun 2008
Posts: 104
Received Thanks: 14
|
compare your arcadia to Arcadia.bak 7.3 From official arab server! from download center and change the values on skills that are different and itll fix all master class skills
when restoring arab arcadia for comparison make a new database called test in the restore window make sute after u select the arab arcadia to put test into the database box because it will change it to Arcadia then go to files tab and under restore as change first to c:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\test.mdf
and second to
c:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\test_log.ldf
under options select Overwrite the existing database with replace and unselect both tail log backups and select close existing connections to destination database then click ok
|
|
|
05/31/2012, 21:18
|
#670
|
elite*gold: 0
Join Date: Sep 2008
Posts: 1,606
Received Thanks: 1,210
|
The error is not in the SkillResource! There are missing some states in your StateResource. Go through your SkillResource and check the bugged skills. Check the state_id and var1. Sometimes there are 2 states. First in state_id and second in var1. If one of them is missing in your StateResource the client will cause a dc!
|
|
|
05/31/2012, 21:41
|
#671
|
elite*gold: 0
Join Date: Jan 2011
Posts: 137
Received Thanks: 64
|
I think the problem come of the "Reiteration_count" who comport 1 caracter, but some skill have reiteration_count >9
|
|
|
05/31/2012, 22:14
|
#672
|
elite*gold: 0
Join Date: Aug 2011
Posts: 7
Received Thanks: 0
|
Quote:
Originally Posted by hackfever
compare your arcadia to Arcadia.bak 7.3 From official arab server! from download center and change the values on skills that are different and itll fix all master class skills
when restoring arab arcadia for comparison make a new database called test in the restore window make sute after u select the arab arcadia to put test into the database box because it will change it to Arcadia then go to files tab and under restore as change first to c:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\test.mdf
and second to
c:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\test_log.ldf
under options select Overwrite the existing database with replace and unselect both tail log backups and select close existing connections to destination database then click ok
|
Thank you very much for help, you are right-still missed three state_ids, added to db.StateResource and now working 100% purely, thank you so much for help!
Quote:
Originally Posted by c1ph3r
The error is not in the SkillResource! There are missing some states in your StateResource. Go through your SkillResource and check the bugged skills. Check the state_id and var1. Sometimes there are 2 states. First in state_id and second in var1. If one of them is missing in your StateResource the client will cause a dc!
|
Thanks for answer, but done with that ^^
|
|
|
06/01/2012, 01:12
|
#673
|
elite*gold: 0
Join Date: Jun 2008
Posts: 104
Received Thanks: 14
|
your welcome dragon
|
|
|
06/01/2012, 10:53
|
#674
|
elite*gold: 0
Join Date: Jan 2012
Posts: 102
Received Thanks: 2
|
Thanks again c1phr3  and how can i add cubric dungeon (with mobs) + Lydian skills ?? (for lydian i have passif skills(most the skills) + actif skill "fear" and another one i forget it x) )
PS : i have full 7.3 (no bugs)
|
|
|
06/01/2012, 13:26
|
#675
|
elite*gold: 0
Join Date: Sep 2008
Posts: 1,606
Received Thanks: 1,210
|
You will need the 7.4 SkillResource, SkillStage and SkillTree Tables...
|
|
|
Similar Threads
|
[Helping Topic] 24/7 Helping Services!
08/27/2008 - EO PServer Hosting - 31 Replies
stucked on anything while setuping your server?
post your problem here and you will get answer as fast as possible better than spamming with posts :cool:
first of all try reading Ahmedpotop's Pserver All thing guide.
if your couldn't solve it out post your problem down here
""That includes PHP rankings pages / registrations pages / Status pages""
|
All times are GMT +1. The time now is 23:57.
|
|