Re: [Release] Merchant Rate Query
Right Click on Shard, New Query, Copy Pasta, Run it - ready :)
Keep in mind to choose your desired values:
SET @NewQuot = xx.xx
SET @NewPrice = xx
SET @NewStack = xx
SET @NewSellPrice = xx
Re: [Release] Merchant Rate Query
Re: [Release] Merchant Rate Query
how to set max SAFE TRADE?
i need only 3 not 8 safe trades...
Re: [Release] Merchant Rate Query
lchemy how will rise nad where change 2x for ?
11 DG Sox Rates where change drop ?
thank you
Re: [Release] Merchant Rate Query
Anyone ever tell you your queries are awesome?:thumbup1:
Re: [Release] Merchant Rate Query
you are the maaaaaaaaaaaaaan :DD thanks :)
Re: [Release] Merchant Rate Query
This works fine for traders and it's working fine with 10x, but this doesn't seem to work for when theif's sell goods. I assume it doesn't help hunters either.
Re: [Release] Merchant Rate Query
so like help traders, too help thiefs?
where i need to change on txdata?
Re: [Release] Merchant Rate Query
Caipi i did this without the queery but on the subject the problem with setting the sell value so high for the trading is that the XP gained is insane, 1 5* will get you too level 7. Any idea how the XP could be reduced to keep the feeling of level 7 meaning something?
Re: [Release] Merchant Rate Query
need to change anything on textdata? if yes, what are the txt's?
Re: [Release] Merchant Rate Query
Quote:
Originally Posted by
Caipi
To adjust the necessary Exp for the Joblevels (
bigint)..
PHP Code:
DECLARE @NewEXPQuot INT -- At first _RefLevel and Dependencies -> Design -> JobExp_Trader/JobExp_Hunter/Job_Exp_Robber -> bigint; Cause Exp = Max INT value
SET @NewEXPQuot = 999 -- Currently: 999x more necessary Exp
UPDATE [dbo].[_RefLevel]
SET JobExp_Trader = JobExp_Trader*NewEXPQuot
WHERE JobExp_Trader > 0
UPDATE [dbo].[_RefLevel]
SET JobExp_Hunter = JobExp_Hunter*NewEXPQuot
WHERE JobExp_Hunter > 0
UPDATE [dbo].[_RefLevel]
SET JobExp_Robber = JobExp_Robber*NewEXPQuot
WHERE JobExp_Robber > 0
Have fun :)
Hi, i got GS_Gameserver error when i change int to bigint. I changed both _RefLevel table and Stored Procedures too. Can you tell me where i can fix it?
Thanks.
Re: [Release] Merchant Rate Query
how to add new Job System ^^
Re: [Release] Merchant Rate Query
Re: [Release] Merchant Rate Query
Re: [Release] Merchant Rate Query
Quote:
Originally Posted by
SL1MSH4DY
+1 is there a way to keep the job exp rate low and still get increased profit?
Posted via Mobile Device
Eventually in _Reward_3Job_Related_Item
PHP Code:
if (@TotalReward > 0)
begin
update _char set remaingold = remaingold + @TotalReward where charid = @CharID
end
-> UPDATE _Char set RemainGold = RemainGold + (@TotalReward/10) WHERE CharID = @CharID