[Help Thread] Please post your questions here.

06/30/2013 06:46 Ne0@NCarbon#2041
Not the .bak file but you can work with this ;)
06/30/2013 12:22 Spacer19#2042
Hello,

I have a problem with StringResource.

There are 6 dbo.StringResource (_FR_US_KR ....) When I change the StringResource is that I converted to GDI and I put in the Customer, when I launch the game every other NPC are bug (weird name) (eg ?????? emptingStrin).

So my question is, how to change the name of an NPC without having to translate all the others?

Thank you for your help, lament my bad english
06/30/2013 14:21 Minotaurus-Rappelz#2043
Quote:
Originally Posted by Minotaurus-Rappelz View Post
How do we do so the NPC job change does master class change
Still need this and now I add HV Fix?

Quote:
Originally Posted by Spacer19 View Post
Hello,

I have a problem with StringResource.

There are 6 dbo.StringResource (_FR_US_KR ....) When I change the StringResource is that I converted to GDI and I put in the Customer, when I launch the game every other NPC are bug (weird name) (eg ?????? emptingStrin).

So my question is, how to change the name of an NPC without having to translate all the others?

Thank you for your help, lament my bad english
Did you change it in the RDB too?
06/30/2013 15:32 Spacer19#2044
Quote:
Originally Posted by Minotaurus-Rappelz View Post
Did you change it in the RDB too?
What ?
07/01/2013 15:38 sunnyxie49#2045
Quote:
Originally Posted by s0ul37 View Post
anyone knows?? :C
601100300 - 601100307
you can try but frist you need have 8.2 DB files and your client have recoust ...... and so on................................................ .....
07/01/2013 17:37 THePLayboyII#2046
Hallo ich habe eine frage bei mein Pserver haben wir ein bug die ganzen einstellungen sind immer bei einem neu start weg.
Tastenbelegung und skillleiste.
Kann mir einer Helfen pls.

THX.
07/01/2013 19:57 ThunderNikk#2047
I can not help you in German but maybe someone can translate it for you...

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

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

A couple of topics to read
07/01/2013 23:04 Minotaurus-Rappelz#2048
Hi! I've started to code my site and I am stopped at a bug. I'm coding with ASPX. My default is in CSHTML and I'm trying to put in a PHP variable. I have a php script on the side and I'm wodering how to put it in. (Server Status, Connection on the site and Registery is in cause)
07/02/2013 10:28 THePLayboyII#2049
THX i have`s
07/02/2013 16:37 Minotaurus-Rappelz#2050
1. I set cash usable to 0 so how do I fix HV.

2. I also REALLY need to know how to add master job change at the NPC

3. How to augment creature Tam Rates
07/02/2013 17:47 ThunderNikk#2051
1. I don't know how many times this has been linked in this thread but I know the information is linked on this page.

You need to run the following script to make HV work when the Cash usable server is set to 0...

Now in order to fix the HV NPCs you need to change their value in dbo.NPCResource.

The Value you need to change is "spawn_type" which will originally be a "4" so it only spawns if it is a cash usable server.

Change the value to "0" and they will spawn like any other NPC.

Code:
use
Arcadia
UPDATE [Arcadia].[dbo].[NPCResource]  SET[spawn_type] = 0  WHERE [contact_script] LIKE '%Secroute%'
2. I don't know, I don't cheat on the Job change quests. What I do know is the Job Change .lua file in the 7.4 server files was set to skip the master class quests because they were not functioning correctly.

Maybe you should take a look at the 7.4 .lua for answers.

3. dbo.MonsterResource each tamable monster type has a column filled out for taming_percentage.

You need to adjust this value for each appearance of that creature in the DB.

Something like this SQL...

Code:
Use Arcadia
-- Sala
UPDATE MonsterResource
SET taming_percentage = 0.250
WHERE monster_group = 3023
go
UPDATE MonsterResource
SET taming_exp_mod = 3.00
WHERE monster_group = 3023
go
UPDATE MonsterResource
SET taming_id = 1901
WHERE monster_group = 3023
go
-- Kenta
UPDATE MonsterResource
SET taming_percentage = 0.0200
WHERE monster_group = 5011
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 5011
go
UPDATE MonsterResource
SET taming_id = 1701
WHERE monster_group = 5011
go
-- Angel
UPDATE MonsterResource
SET taming_percentage = 0.0200
WHERE monster_group = 5021
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 5021
go
UPDATE MonsterResource
SET taming_id = 2001
WHERE monster_group = 5021
go
-- Wolf
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 103049
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 103049
go
UPDATE MonsterResource
SET taming_id = 2901
WHERE monster_group = 103049
go
-- windsong
UPDATE MonsterResource
SET taming_percentage = 0.0700
WHERE monster_group = 103022
go
UPDATE MonsterResource
SET taming_exp_mod = 3.00
WHERE monster_group = 103022
go
UPDATE MonsterResource
SET taming_id = 3301
WHERE monster_group = 103022
go
UPDATE MonsterResource
SET taming_percentage = 0.0700
WHERE monster_group = 103020
go
UPDATE MonsterResource
SET taming_exp_mod = 3.00
WHERE monster_group = 103020
go
UPDATE MonsterResource
SET taming_id = 3301
WHERE monster_group = 103020
go
-- eimus
UPDATE MonsterResource
SET taming_percentage = 0.0200
WHERE monster_group = 103091
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 103091
go
UPDATE MonsterResource
SET taming_id = 3401
WHERE monster_group = 103091
go
UPDATE MonsterResource
SET taming_percentage = 0.0200
WHERE monster_group = 103092
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 103092
go
UPDATE MonsterResource
SET taming_id = 3401
WHERE monster_group = 103092
go
-- octopus
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 103086
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 103086
go
UPDATE MonsterResource
SET taming_id = 3502
WHERE monster_group = 103086
go
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 103087
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 103087
go
UPDATE MonsterResource
SET taming_id = 3502
WHERE monster_group = 103087
go
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 103088
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 103088
go
UPDATE MonsterResource
SET taming_id = 3502
WHERE monster_group = 103088
go
-- Genie
UPDATE MonsterResource
SET taming_percentage = 0.0150
WHERE monster_group = 103106
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 103106
go
UPDATE MonsterResource
SET taming_id = 3701
WHERE monster_group = 103106
go
UPDATE MonsterResource
SET taming_percentage = 0.0150
WHERE monster_group = 103107
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 103107
go
UPDATE MonsterResource
SET taming_id = 3701
WHERE monster_group = 103107
go
UPDATE MonsterResource
SET taming_percentage = 0.0150
WHERE monster_group = 103108
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 103108
go
UPDATE MonsterResource
SET taming_id = 3701
WHERE monster_group = 103108
go
-- ifrit
UPDATE MonsterResource
SET taming_percentage = 0.0150
WHERE monster_group = 103111
go
UPDATE MonsterResource
SET taming_exp_mod = 4.00
WHERE monster_group = 103111
go
UPDATE MonsterResource
SET taming_id = 3801
WHERE monster_group = 103111
go
-- Unicorn
UPDATE MonsterResource
SET taming_percentage = 0.0700
WHERE monster_group = 103125
go
UPDATE MonsterResource
SET taming_exp_mod = 3.00
WHERE monster_group = 103125
go
UPDATE MonsterResource
SET taming_id = 3901
WHERE monster_group = 103125
go
-- Nightmare
UPDATE MonsterResource
SET taming_percentage = 0.0700
WHERE monster_group = 103125
go
UPDATE MonsterResource
SET taming_exp_mod = 3.00
WHERE monster_group = 103125
go
UPDATE MonsterResource
SET taming_id = 4001
WHERE monster_group = 103125
go
-- Blue Pixie
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 1052
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 1052
go
UPDATE MonsterResource
SET taming_id = 1021
WHERE monster_group = 1052
go
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 1053
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 1053
go
UPDATE MonsterResource
SET taming_id = 1021
WHERE monster_group = 1053
go
-- Skelly
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 1032
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 1032
go
UPDATE MonsterResource
SET taming_id = 2401
WHERE monster_group = 1032
go
UPDATE MonsterResource
SET taming_percentage = 0.2500
WHERE monster_group = 1033
go
UPDATE MonsterResource
SET taming_exp_mod = 2.00
WHERE monster_group = 1033
go
UPDATE MonsterResource
SET taming_id = 2401
WHERE monster_group = 1033
go
-- other
UPDATE MonsterResource
SET taming_id = 3901
WHERE name_id = 83006
go
UPDATE MonsterResource
SET taming_id = 3901
WHERE name_id = 84005
go
UPDATE MonsterResource
SET taming_id = 3901
WHERE name_id = 85006
go
Use Arcadia
UPDATE MonsterResource
SET taming_id = 4001
WHERE name_id = 121002
go
UPDATE MonsterResource
SET taming_id = 4001
WHERE name_id = 120003
go
UPDATE MonsterResource
SET taming_id = 4001
WHERE name_id = 122001
You will need to include the 8.1 pets in this as well this code was pre 8.1
07/02/2013 17:50 Player95#2052
Quote:
Originally Posted by Minotaurus-Rappelz View Post
3. How to augment creature Tam Rates
As far as I know only the Arcadia.dbo.MonsterResource is needed.

E:
thndr .__.
07/02/2013 19:28 Minotaurus-Rappelz#2053
It still says the same thing [HV]
07/02/2013 20:25 ThunderNikk#2054
Quote:
Originally Posted by Minotaurus-Rappelz View Post
It still says the same thing [HV]
I can't read minds. I have no idea what your HV says.
07/02/2013 20:59 Minotaurus-Rappelz#2055
It says something about not being premium so he cant help me