Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Private Server
You last visited: Today at 16:43

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

Advertisement



[SOX] How to actually set the rates?

Discussion on [SOX] How to actually set the rates? within the SRO Private Server forum part of the Silkroad Online category.

Reply
 
Old   #1
 
Colb's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 232
Received Thanks: 110
[SOX] How to actually set the rates?

I have changed the rates listed in _RefDropClassSel_RareEquip to a multiple of 14.99 (default). No matter how high I go, it doesn't seem to effect my SOX drop rates. Still too low.


So I changed "Rarity" in _RefObjCommon from 2 to 3. However, this makes my SOX drop rate way too high. So I left rarity at 3, and changed my other setting back to 14.99 in _RefDropClassSel_RareEquip. Still too high.


Does anyone have any information to find a good "medium" setting for SOX drops?

My idea is to have SOM common, but SOSun somewhat rare.
Colb is offline  
Old 05/03/2013, 08:34   #2
 
Kape7's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 3,210
Received Thanks: 6,289
1 = 100%
0.2 = 20%
0 = 0%
Kape7 is offline  
Thanks
2 Users
Old 05/03/2013, 14:32   #3
 
Colb's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 232
Received Thanks: 110
Quote:
Originally Posted by Synx7 View Post
1 = 100%
0.2 = 20%
0 = 0%
Does this go in "rarity"?
Colb is offline  
Old 05/03/2013, 22:51   #4
 
Kape7's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 3,210
Received Thanks: 6,289
Quote:
Originally Posted by Colb View Post
Does this go in "rarity"?
On _RefDropClassSel_RareEquip.

Rarity only indicate the seal.
Kape7 is offline  
Thanks
1 User
Old 05/04/2013, 02:06   #5
 
Colb's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 232
Received Thanks: 110
Doesn't make sense. In _RefObjCommon, all rare items are assigned Rarity=2 by default. Only if I change to 3, will it increase drop rates. Changing _RefDropClassSel_RareEquip doesn't seem to do anything.


I test each setting by letting a bot run for about 8 hours.

With sun items, I set rarity=2 (default) _RefDropClassSel to 1, still no drops yet. I tried changing higher than 1, and nothing.

I guess I'm just having a hard time understanding how the server calculates the drop rate for rare items. Is there a guide that explains this?
Colb is offline  
Old 05/04/2013, 02:08   #6
 
elite*gold: 1000
Join Date: Apr 2012
Posts: 1,003
Received Thanks: 208
Quote:
Originally Posted by Synx7 View Post
On _RefDropClassSel_RareEquip.

Rarity only indicate the seal.
So the default rate is 1499% ?
qkuh is offline  
Old 05/04/2013, 02:45   #7
 
Kape7's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 3,210
Received Thanks: 6,289
Quote:
Originally Posted by qkuh View Post
So the default rate is 1499% ?
At some point it starts counting from 0 again, so it is not 1499, but also not 100%, it could be anything.

Quote:
Originally Posted by Colb View Post
Doesn't make sense. In _RefObjCommon, all rare items are assigned Rarity=2 by default. Only if I change to 3, will it increase drop rates. Changing _RefDropClassSel_RareEquip doesn't seem to do anything.


I test each setting by letting a bot run for about 8 hours.

With sun items, I set rarity=2 (default) _RefDropClassSel to 1, still no drops yet. I tried changing higher than 1, and nothing.

I guess I'm just having a hard time understanding how the server calculates the drop rate for rare items. Is there a guide that explains this?
Rarity = Sealed (0 = normal, 2 = sealed, 3 = set item)
Item Class = Tier of seal (just like a normal weapon tier)
Remember that the _RefDropClassSel is split by levels and ItemClass (tiers). Are you sure you are setting the proper value on the proper level and tier?

Can you share how it looks currently your _RefDropClassSel table?

You are probably changing it all server-sided and you don't notice the changes ingame. Try changing the rarity to 3 on the client-side and see how a rarity 3 item looks like
Kape7 is offline  
Old 05/04/2013, 03:03   #8
 
Colb's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 232
Received Thanks: 110
Aha. That makes more sense.


Here is my _RefDropClassSel table:







Btw, I appreciate the help. I've been playing around with SOX for weeks.

I assume Group1, Group2, & Group3 are Star, Moon and Sun for Degree 1, correct? So they would drop from level mobs 1-8
Colb is offline  
Old 05/04/2013, 03:14   #9
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
As Synx said you gotta make sure that both, the monster level and ProbGroup matches column-row-wise with the desired drop chance »

Code:
SELECT r.ID, r.CodeName128, r.ReqLevel1, ItemClass 'DropGroup', CEILING(ItemClass / 3.0) 'Degree' FROM _RefObjCommon r JOIN _RefObjItem i on r.Link = i.ID WHERE TypeID1 = 3 AND TypeID2 = 1 AND TypeID3 BETWEEN 0 AND 12 AND Rarity > 0

EDIT:

1 = 100%, you already screwed your drop chances ;D

Check the query above for the dropgroups
IceAmStiel is offline  
Thanks
2 Users
Old 05/04/2013, 03:21   #10
 
Colb's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 232
Received Thanks: 110
Yeah, I understand the drop groups and tiers. Pretty simple.


I was confused with the definition of rarity, and the fact that this DB had a default raredrop rate of 14.9 o_O
Colb is offline  
Old 05/04/2013, 03:23   #11
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Quote:
Originally Posted by Colb View Post
Yeah, I understand the drop groups and tiers. Pretty simple.


I was confused with the definition of rarity, and the fact that this DB had a default raredrop rate of 14.9 o_O

You should throw that database straight into the garbage haha
IceAmStiel is offline  
Old 05/04/2013, 03:24   #12
 
Colb's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 232
Received Thanks: 110
Lol, I'm beginning to realize that now.

Alright. I made a query and reset all RARE items Rarity=2 (which, as you said, indicates sealed).

I then changed my rare drop rates as indicated in the picture:



Now, for testing purposes, I set my server drop rate to 600x. So I should be getting a lot of SOX drops on mobs from 76-90. But after an hour of botting on 87 mobs, I haven't had a single one.

Is it possible that something was changed in the specific mob drops?
Colb is offline  
Reply


Similar Threads Similar Threads
MadnessWorldOnline Cape 90 Server Low exp/Sp Rates Med Job Rates / 1silk/h system
01/29/2013 - SRO PServer Advertising - 59 Replies
Madness World Online Server Was SOLD



All times are GMT +2. The time now is 16:43.


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.