hi every one
this is my first topic
how i can change the exp rate for pets so thats the pets in the server can lvl fastly
this is my first topic
how i can change the exp rate for pets so thats the pets in the server can lvl fastly
Yes correct this was stated on arcadia to by speedy =)Quote:
Now your just affecting a single class, since not all classes have creature breeding. Instead you should change the experience tables for pets in the database. For instance if you want pets to gain 20% exp instead of the normal 10% then take 20% of the current rates off of each. Etc. That is the simplest way to effectively change the rates at the moment.
UPDATE [Arcadia].[dbo].[SummonLevelResouce] SET [normal_exp] = [normal_exp] / 2 GO
UPDATE [Arcadia].[dbo].[SummonLevelResouce] SET [normal_exp] = [normal_exp] * 2 GO
Quote:
it will give +50% 0.0???Code:UPDATE [Arcadia].[dbo].[SummonLevelResouce] SET [normal_exp] = [normal_exp] * 2 GO
he used a star which will multiply in a mssql query i used the forward slash which divdes the valuesQuote:
What?
No, it will take 2x as much exp to level.
UPDATE [Arcadia].[dbo].[SummonLevelResouce] SET [normal_exp] = [normal_exp] / 2 GO
UPDATE [Arcadia].[dbo].[SummonLevelResouce] SET [normal_exp] = [normal_exp] * 1.5 GO
To be honest I would have never thought of that. Makes a Korean Dev twisted sort of sense though. I'll give it a try.Quote:
Originally Posted by speedy-nlfor the -xp just set the max lv170 xp back when you alter the xp table
when pet hit max level the -xp will adjust itself then
I have to agree, I do play on my own lonely, lagless server, and I only ran into this when I was pushing the exp rates.Quote:
Originally Posted by speedy-nlits peeps there own fault that a pet lag behind, playing with 500x xp or even more make your toon gaining ? levels in 1 kill but the pet gain only ?? (max) xp
but best solution just leave the xp table alone, dont get higher then 30x xp
use ac so pet get max xp and keep close to player lv
peeps demand just to much from pservers, you now more rooms. to low xp, drop sucks, ect, want it better just play on your own pserver and use the settings you want
I admit i am not a SQL Guru or a big boy like yourself.. but the reason i wasnt successful running the query its because the Statement was missing a letterQuote:
They have been. It's pretty damn basic SQL.
Honestly, if you can't get this query to work, you might want to leave the private servering to the big boys.
On that note, messing with the exp table will bork how the client displays experience for them. You'll see that you have negative experience which only gets more and more negative as you continue leveling. The pet will still level normally, and it will take less experience to level. And you can check out how much exp your pet has in the database, but I found it a little too annoying not to be able to check my progress in-game.