[Help Thread] Please post your questions here.

10/24/2013 08:17 Nada92#2656
Hi there

does anyone knows how to make a new npc which sell items for huntaholic / gen points ?
i set a normal npc and changed
price_ratio to 0.000 and then i set the
huntaholic_ratio to 1.000

but it still selling the items for "0" rupee.

i dont know if i should change something in my ItemResource but this wont work i guess because i tried to put different items.

thanks in advance :rolleyes:
10/24/2013 08:27 .BlackCat.#2657
Quote:
Originally Posted by Nada92 View Post
Hi there

does anyone knows how to make a new npc which sell items for huntaholic / gen points ?
i set a normal npc and changed
price_ratio to 0.000 and then i set the
huntaholic_ratio to 1.000

but it still selling the items for "0" rupee.

i dont know if i should change something in my ItemResource but this wont work i guess because i tried to put different items.

thanks in advance :rolleyes:
Now check Price/huntaholic_point on ItemResource .
10/24/2013 20:38 Nada92#2658
Quote:
Originally Posted by .BlackCat. View Post
Now check Price/huntaholic_point on ItemResource .
thank you very much, its working good now ^^
appreciate it :rolleyes:
10/25/2013 01:14 kodiaktommy616#2659
ok i used this

USE ARCADIA
GO

SELECT
ITEMRES.id as item_id, STRINGRES.value as item_name, TOOLTIP.value
FROM
dbo.ItemResource ITEMRES
LEFT JOIN
dbo.StringResource STRINGRES
ON
STRINGRES.code = ITEMRES.name_id
LEFT JOIN
dbo.StringResource TOOLTIP
ON
TOOLTIP.code = ITEMRES.tooltip_id

WHERE STRINGRES.value LIKE '%curious%'

used curious_wooden_box
wooden
curious wooden box


trying to find curious wooden box the only thing i got was 2 wooden helmets
but no id to the box i am looking for but yet it is droping in game so i know it is in db what did i do wrong
10/25/2013 01:51 ThunderNikk#2660
'%curious%' worked for me, in fact I just copy pasted your script here

601100232

Have you checked your dbo.StringResource to see if it was in English yet?

Try...

Code:
Use Arcadia

Select * from dbo.StringResource where code = 611100232
See what it spits back at you.
10/25/2013 02:10 kodiaktommy616#2661
hmm its not in English
10/25/2013 02:21 ThunderNikk#2662
Well in order to search for things without having to learn another language you are going to need to use some of the client dumper tools to dump the resources from a client, some of the management tools to read those resources, and import the needed English db_string(ascii).rdb into the database.

[Only registered and activated users can see links. Click Here To Register...]

I thought Royal wrote in the OP that he included the English string resource in the repack?

Never mind I just re read it and he included the 8.2 string resource, he did not say the English one.
10/25/2013 03:57 ismokedrow#2663
If the result of Thndr's query was not in English that is exactly why the script from the wikia didn't yield you a result. This means your dbo.StringResource is not English.

Open up your Arcadia
- Open Tables
- Right Click on dbo.StringResource
- Rename dbo.StringResource to dbo.StringResource_NONENGLISH
- Download this dbo.StringResource [Only registered and activated users can see links. Click Here To Register...]

- Open the SQL File with SSMS and execute it

You now have an English 8.2 StringResource and should be able to use the Item Search from the wikia no problem
10/25/2013 15:57 ciccioxd#2664
Hello guys, I made a guide to create a Rappelz private server, but the server of Captain Harlock, after giving me the ok, turns off, what should I do?


Help me pls!

I can also give my TeamViewer to help me please


Skype: Devilblack82
10/25/2013 17:44 ThunderNikk#2665
Quote:
Originally Posted by ciccioxd View Post
Hello guys, I made a guide to create a Rappelz private server, but the server of Captain Harlock, after giving me the ok, turns off, what should I do?


Help me pls!

I can also give my TeamViewer to help me please


Skype: Devilblack82
What is the name of your Arcadia database...Arcadia or Arcadia8_1?
10/25/2013 23:43 ciccioxd#2666
Arcadia8_1 official guide and official files on elitepvpers thread
10/26/2013 04:02 ThunderNikk#2667
Quote:
Originally Posted by ciccioxd View Post
Arcadia8_1 official guide and official files on elitepvpers thread
When you restore the Arcadia database you need to rename it from Arcadia8_1 to "Arcadia" or the captain will crash.
10/26/2013 18:53 kodiaktommy616#2668
Quote:
Originally Posted by thndr View Post
Well in order to search for things without having to learn another language you are going to need to use some of the client dumper tools to dump the resources from a client, some of the management tools to read those resources, and import the needed English db_string(ascii).rdb into the database.

[Only registered and activated users can see links. Click Here To Register...]

I thought Royal wrote in the OP that he included the English string resource in the repack?

Never mind I just re read it and he included the 8.2 string resource, he did not say the English one.
yes thank ya royal repack does have the stringresourse for english just had to rename it
10/26/2013 18:54 cece1812#2669
Hi i Have a little soucis ;)
When i keep this resours in my game folder : en2yU^AYGBrlMX3Rgy$IYvg6i Budkadah become invisible but i can see the 8.2 bosses. But when i delete the resource, budka become visible but the 8.2 bosses are invisible. How may i solve it plz ?

And secondly, how may i do to edit the name of monsters plz ?

Thanks
10/27/2013 06:43 Nada92#2670
hi, may somebody help me with this annoying issue please ?

when i donate to the altar and open the Goddess's Gold/silver/bronze/metal Box, it gives me only DT or WD cards and rupees bags, it should give me soul stones and +5 skill cards.

i don't know is this could help : i used some codes to remove +1 skill cards and soul stones from drops table

Goddess's Gold Box ID : 3620023
Goddess's Silver Box ID : 3620024
Goddess's Bronze Box ID : 3620025
Goddess's Metal Box ID : 3620026

thanks in advance :)