|
You last visited: Today at 06:37
Advertisement
Need a query !!!!!!
Discussion on Need a query !!!!!! within the SRO Private Server forum part of the Silkroad Online category.
06/16/2014, 17:07
|
#1
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Need a query !!!!!!
1- Query increase the FGW Books Rate
2- Increase the trader gold Rate
Ty
|
|
|
06/16/2014, 17:24
|
#2
|
elite*gold: 21
Join Date: Mar 2011
Posts: 1,613
Received Thanks: 1,122
|
- Vsro FGW D11 talisman drop rates query.
Quote:
Hello ********! =)
i've joined ******** to make some [HELP]Threads and people here helped me.. so i'm here today to help some of people who don't know how to change the D11 FGW talisman drop rates..
here is the Query..
Code:
USE [SRO_VT_SHARD]
UPDATE _RefMonster_AssignedItemRndDrop set DropRatio = '1.65' where DropRatio = '0.11'
UPDATE _RefMonster_AssignedItemRndDrop set DropRatio = '0.825' where DropRatio = '0.055'
This Query will change your drop rates to 15x
__________________________________________________ ___________________________
Explanation
if you want to make it 10x for example, do like the following..
Code:
USE [SRO_VT_SHARD]
UPDATE _RefMonster_AssignedItemRndDrop set DropRatio = '1.65' where DropRatio = '1.1'
UPDATE _RefMonster_AssignedItemRndDrop set DropRatio = '0.825' where DropRatio = '0.55'
What we did there to make it 10x?
I simply opened the calculator and
1-( 0.11*10 = 1.1 )
2-( 0.055*10 = 0.55 )
i guess it's so clear.
Wish i helped you guys.
|
- Adding Job Rates
Quote:
Well, that will increase the price also
(At my opinion more enjoymend for Traders because they get scared of they expensive loot )
, but it works for Thiefs and Hunters, here is the query.
Hope you like it 
USE [SRO_VT_SHARD_INIT]
GO
UPDATE dbo._RefObjCommon
SET Price = 383*20
WHERE Price = 383
UPDATE dbo._RefObjCommon
SET SellPrice = 191*20
WHERE SellPrice = 191
UPDATE dbo._RefPricePolicyOfItem
SET Cost = 383*20
WHERE Cost = 383
Change the *20 to your value =)
|
Credits goes to Hean & winsnoop from RG.
|
|
|
06/16/2014, 18:43
|
#3
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
O.o U can give me just the query
not ( you are...s*** ) idk why, when we are asking from something we get insulted !! Pff
Ty anyway
And btw. i searched for a post about this, i get nothing
Or i didn`t searched well
Another Question if u don`t mind.
The query about the trade gold rate, in my server 4* from jangan to const. gives 1.2b
If i need it to be like 2.5b or 3b. What is the correct value pls ? Ty
|
|
|
06/16/2014, 20:02
|
#4
|
elite*gold: 0
Join Date: Jun 2014
Posts: 38
Received Thanks: 53
|
Quote:
Originally Posted by ²²Rock²²
You're............ piece of s***.
- Vsro FGW D11 talisman drop rates query.
- Adding Job Rates
Credits goes to Hean & winsnoop from RG.
Advice; Give up on creating a server If you can't even use google
|
thank you
|
|
|
06/17/2014, 02:28
|
#5
|
elite*gold: 21
Join Date: Mar 2011
Posts: 1,613
Received Thanks: 1,122
|
Quote:
Originally Posted by hamzafigo
O.o U can give me just the query
not ( you are...s*** ) idk why, when we are asking from something we get insulted !! Pff
Ty anyway
And btw. i searched for a post about this, i get nothing
Or i didn`t searched well
Another Question if u don`t mind.
The query about the trade gold rate, in my server 4* from jangan to const. gives 1.2b
If i need it to be like 2.5b or 3b. What is the correct value pls ? Ty
|
I deeply apologize, I was in a bad mood.
Use that query;
Code:
SElect SellPrice from _RefObjCommon where CodeName128 in ('ITEM_ETC_TRADE_CH_01',
'ITEM_ETC_TRADE_CH_02',
'ITEM_ETC_TRADE_CH_03',
'ITEM_ETC_TRADE_CH_04',
'ITEM_ETC_TRADE_WC_01',
'ITEM_ETC_TRADE_WC_02',
'ITEM_ETC_TRADE_WC_03',
'ITEM_ETC_TRADE_WC_04',
'ITEM_ETC_TRADE_KT_01',
'ITEM_ETC_TRADE_KT_02',
'ITEM_ETC_TRADE_KT_03',
'ITEM_ETC_TRADE_KT_04',
'ITEM_ETC_TRADE_EU_01',
'ITEM_ETC_TRADE_EU_02',
'ITEM_ETC_TRADE_EU_03',
'ITEM_ETC_TRADE_EU_04',
'ITEM_ETC_TRADE_CH_05',
'ITEM_ETC_TRADE_CH_06',
'ITEM_ETC_TRADE_CH_07',
'ITEM_ETC_TRADE_WC_05',
'ITEM_ETC_TRADE_WC_06',
'ITEM_ETC_TRADE_WC_07',
'ITEM_ETC_TRADE_TK_01',
'ITEM_ETC_TRADE_TK_02',
'ITEM_ETC_TRADE_TK_03',
'ITEM_ETC_TRADE_RM_01',
'ITEM_ETC_TRADE_RM_02',
'ITEM_ETC_TRADE_RM_03',
'ITEM_ETC_TRADE_AM_01',
'ITEM_ETC_TRADE_AM_02',
'ITEM_ETC_TRADE_AM_03',
'ITEM_ETC_TRADE_CA_01',
'ITEM_ETC_TRADE_CA_02',
'ITEM_ETC_TRADE_CA_03',
'ITEM_ETC_TRADE_CA_04',
'ITEM_ETC_TRADE_SD_01',
'ITEM_ETC_TRADE_SD_02',
'ITEM_ETC_TRADE_VE_01',
'ITEM_ETC_TRADE_VE_02',
'ITEM_ETC_TRADE_DE_01',
'ITEM_ETC_TRADE_DE_02')
And then give me the sellprice which is in the column and I'll give you another query to make it 3b.
It should look like that:
So you'll have to give me the number which appeared in the column. In mine it was 343.
|
|
|
06/17/2014, 03:37
|
#6
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Thnx so much Rock, and sry if i`m asking so much.
btw, in my server the 4 * trade is the max. 5* closed make my sr_gameserver crash
So when i make 4* trade from jangan to const. i got 1,2b
Thnx for help Rock
|
|
|
06/17/2014, 03:52
|
#7
|
elite*gold: 21
Join Date: Mar 2011
Posts: 1,613
Received Thanks: 1,122
|
Quote:
Originally Posted by hamzafigo
Thnx so much Rock, and sry if i`m asking so much.
btw, in my server the 4 * trade is the max. 5* closed make my sr_gameserver crash
So when i make 4* trade from jangan to const. i got 1,2b
Thnx for help Rock
|
Use this and test it.
Code:
update _RefObjCommon set SellPrice = 100000 where CodeName128 in ('ITEM_ETC_TRADE_CH_01',
'ITEM_ETC_TRADE_CH_02',
'ITEM_ETC_TRADE_CH_03',
'ITEM_ETC_TRADE_CH_04',
'ITEM_ETC_TRADE_WC_01',
'ITEM_ETC_TRADE_WC_02',
'ITEM_ETC_TRADE_WC_03',
'ITEM_ETC_TRADE_WC_04',
'ITEM_ETC_TRADE_KT_01',
'ITEM_ETC_TRADE_KT_02',
'ITEM_ETC_TRADE_KT_03',
'ITEM_ETC_TRADE_KT_04',
'ITEM_ETC_TRADE_EU_01',
'ITEM_ETC_TRADE_EU_02',
'ITEM_ETC_TRADE_EU_03',
'ITEM_ETC_TRADE_EU_04',
'ITEM_ETC_TRADE_CH_05',
'ITEM_ETC_TRADE_CH_06',
'ITEM_ETC_TRADE_CH_07',
'ITEM_ETC_TRADE_WC_05',
'ITEM_ETC_TRADE_WC_06',
'ITEM_ETC_TRADE_WC_07',
'ITEM_ETC_TRADE_TK_01',
'ITEM_ETC_TRADE_TK_02',
'ITEM_ETC_TRADE_TK_03',
'ITEM_ETC_TRADE_RM_01',
'ITEM_ETC_TRADE_RM_02',
'ITEM_ETC_TRADE_RM_03',
'ITEM_ETC_TRADE_AM_01',
'ITEM_ETC_TRADE_AM_02',
'ITEM_ETC_TRADE_AM_03',
'ITEM_ETC_TRADE_CA_01',
'ITEM_ETC_TRADE_CA_02',
'ITEM_ETC_TRADE_CA_03',
'ITEM_ETC_TRADE_CA_04',
'ITEM_ETC_TRADE_SD_01',
'ITEM_ETC_TRADE_SD_02',
'ITEM_ETC_TRADE_VE_01',
'ITEM_ETC_TRADE_VE_02',
'ITEM_ETC_TRADE_DE_01',
'ITEM_ETC_TRADE_DE_02')
|
|
|
06/17/2014, 12:15
|
#8
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Thanks. I`ll test it
|
|
|
06/20/2014, 12:33
|
#9
|
elite*gold: 10
Join Date: Jun 2014
Posts: 626
Received Thanks: 66
|
beware of using the jop query twice because if u made it for example 20bil if u used that query agian to make it 30b it won't be edited
it just plus it the old one with the new one to become 50b
so if if you alredy made it you have to make it the old price and then use it
|
|
|
06/21/2014, 19:20
|
#10
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
I used it but still the same price. idk why
|
|
|
06/27/2014, 20:22
|
#11
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Up ?
|
|
|
06/27/2014, 21:29
|
#12
|
elite*gold: 0
Join Date: Aug 2012
Posts: 748
Received Thanks: 227
|
Update your media with it too
|
|
|
06/27/2014, 23:43
|
#13
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by Sir*EviL
Update your media with it too
|
But i take the same gold!
But which file pls ?
|
|
|
06/28/2014, 00:18
|
#14
|
elite*gold: 0
Join Date: Aug 2012
Posts: 748
Received Thanks: 227
|
itemdata_xxx
|
|
|
06/28/2014, 00:50
|
#15
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by Sir*EviL
itemdata_xxx
|
Still the same pff.
|
|
|
 |
|
Similar Threads
|
[HELP]Query´s
06/18/2012 - Metin2 Private Server - 2 Replies
Guten Abend Epvp,
Ich hab die Yuno Sf´s und hab da viele Waffen usw gefunden.
Aber ich möchte andere Sf´s benutzen also wollte ich fragen ob man Querys aus der Db herauskopiren kann.
Bitte um Hilfe bin in Epvp ereichbar oder in Skype.
Skype Addi: niki123a123a
|
Some Query UseFul
04/11/2012 - SRO Private Server - 10 Replies
Some Query UseFul
Some One By Me And Some No :D
Download
Password:King$
Query
|
[Suche]Query für "Alteklinge, Reichsklinge" &' Stichdolche NUR QUERY!
08/18/2010 - Metin2 Private Server - 1 Replies
Ich weiß ich werd nervig aber ich suche die Query's
für Alteklinge, Reichsklinge &' Strichdolche
Why?
Naya, weil ich in der DB i-wie nur Drachenmaulglocke hab
... not more -.-
Auf jeden Fall Icon's etc. etc. etc. hab ich ich brauche nur die Query's
|
A Query
03/02/2010 - 12Sky2 - 6 Replies
Hi,
First off, i'm an addict for 12sky 2. I play both 12sky 2 PH and 12sky 2 aeria. All the hax i find here for aeria server
has been very helpful. Apparently, things are quite the opposite for 12sky2 ph server since we have Xtrap. So hacking is quite
impossible for PH. Lately there has been major issues in PH server like some people using cheats/hacks. Fact is, there are already
people banned in PH server for using hax.
Anyway, been trying to find a way to hack 12sky 2 ph server but...
|
All times are GMT +1. The time now is 06:38.
|
|