Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 04:04

  • Please register to post and access all features, it's quick, easy and FREE!

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.

Reply
 
Old 06/30/2013, 06:46   #2041
 
elite*gold: 0
Join Date: Jul 2011
Posts: 111
Received Thanks: 86
Not the .bak file but you can work with this
Attached Files
File Type: zip Rappelz_game_log.zip (3.5 KB, 28 views)
Ne0@NCarbon is offline  
Thanks
2 Users
Old 06/30/2013, 12:22   #2042
 
Spacer19's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 46
Received Thanks: 11
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
Spacer19 is offline  
Thanks
1 User
Old 06/30/2013, 14:21   #2043
 
elite*gold: 0
Join Date: Jun 2013
Posts: 22
Received Thanks: 0
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?
Minotaurus-Rappelz is offline  
Old 06/30/2013, 15:32   #2044
 
Spacer19's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 46
Received Thanks: 11
Quote:
Originally Posted by Minotaurus-Rappelz View Post
Did you change it in the RDB too?
What ?
Spacer19 is offline  
Thanks
1 User
Old 07/01/2013, 15:38   #2045
 
sunnyxie49's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 77
Received Thanks: 24
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................................................ .....
sunnyxie49 is offline  
Old 07/01/2013, 17:37   #2046
 
elite*gold: 0
Join Date: Nov 2011
Posts: 38
Received Thanks: 3
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.
THePLayboyII is offline  
Old 07/01/2013, 19:57   #2047
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
I can not help you in German but maybe someone can translate it for you...





A couple of topics to read
ThunderNikk is offline  
Old 07/01/2013, 23:04   #2048
 
elite*gold: 0
Join Date: Jun 2013
Posts: 22
Received Thanks: 0
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)
Minotaurus-Rappelz is offline  
Old 07/02/2013, 10:28   #2049
 
elite*gold: 0
Join Date: Nov 2011
Posts: 38
Received Thanks: 3
THX i have`s
THePLayboyII is offline  
Old 07/02/2013, 16:37   #2050
 
elite*gold: 0
Join Date: Jun 2013
Posts: 22
Received Thanks: 0
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
Minotaurus-Rappelz is offline  
Old 07/02/2013, 17:47   #2051
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
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
ThunderNikk is offline  
Thanks
1 User
Old 07/02/2013, 17:50   #2052
 
elite*gold: 0
Join Date: Sep 2008
Posts: 120
Received Thanks: 98
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 .__.
Player95 is offline  
Old 07/02/2013, 19:28   #2053
 
elite*gold: 0
Join Date: Jun 2013
Posts: 22
Received Thanks: 0
It still says the same thing [HV]
Minotaurus-Rappelz is offline  
Old 07/02/2013, 20:25   #2054
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
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.
ThunderNikk is offline  
Old 07/02/2013, 20:59   #2055
 
elite*gold: 0
Join Date: Jun 2013
Posts: 22
Received Thanks: 0
It says something about not being premium so he cant help me
Minotaurus-Rappelz is offline  
Reply

Tags
7.4, client, rappelz


Similar Threads 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 +2. The time now is 04:04.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.