Register for your free account! | Forgot your password?

You last visited: Today at 00:33

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

Advertisement



[Tool Php] Real alchemy rate

Discussion on [Tool Php] Real alchemy rate within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old   #1
 
gigola123's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 718
Received Thanks: 378
[Tool Php] Real alchemy rate

Hello all , this is me , Mixizi.

I want to release a little tool which took me about 10 mins to do.



There you'll be able to make your alchemy rate ,(It's really easy) I want to say thx to synx , he discover how to use the alchemy rate.

This tool convert everything to hex and convert again to decimal , checking if there is 2 bytes per "+" , if not add a Bytes "0" for make the value understable for the gs.

I've also made a blue decrypt but if you are kind I'll release it .

If you want to decrypt your actual rate I've made a tool too :



I use it on my server actually and it's working well so enjoy it.
gigola123 is offline  
Thanks
12 Users
Old 03/16/2013, 16:09   #2
Chat Killer In Duty


 
PortalDark's Avatar
 
elite*gold: 5
Join Date: May 2008
Posts: 16,309
Received Thanks: 6,470
#approved
PortalDark is offline  
Old 03/16/2013, 16:30   #3
 
Kape7's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 3,210
Received Thanks: 6,289
Good job
Kape7 is offline  
Thanks
1 User
Old 03/16/2013, 16:39   #4
 
denise456's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 373
Received Thanks: 71
GOOD JOB
denise456 is offline  
Old 03/16/2013, 17:44   #5
 
elite*gold: 41
Join Date: Oct 2012
Posts: 2,216
Received Thanks: 1,195
Nice
Crue* is offline  
Old 03/16/2013, 17:57   #6
 
martynas123boxter's Avatar
 
elite*gold: 0
Join Date: Jun 2011
Posts: 1,644
Received Thanks: 539
********!!
Oh sry Good Job
martynas123boxter is offline  
Old 03/16/2013, 19:43   #7
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Code:
CREATE FUNCTION [dbo].[ALCHEMY_convPercentage](@P1 TINYINT, @P2 TINYINT, @P3 TINYINT, @P4 TINYINT) 
RETURNS INT

AS
BEGIN
	RETURN CONVERT(INT, CONVERT(varbinary(1), @P1) + CONVERT(varbinary(1), @P2) + CONVERT(varbinary(1), @P3) + CONVERT(varbinary(1), @P4));
END
Code:
CREATE PROCEDURE [dbo].[ALCHEMY_convParameter]

	@Param	INT,
	@P1		varchar(8) OUTPUT,
	@P2		varchar(8) OUTPUT,
	@P3		varchar(8) OUTPUT,
	@P4		varchar(8) OUTPUT

as

SELECT
	@P1 = CONVERT(varchar(3), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), @Param), 1, 1))) + '%',
	@P2 = CONVERT(varchar(3), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), @Param), 2, 1))) + '%',
	@P3 = CONVERT(varchar(3), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), @Param), 3, 1))) + '%',
	@P4 = CONVERT(varchar(3), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), @Param), 4, 1))) + '%';

RETURN;
»»







Code:
_
Code:
SELECT
	r.ID, 
	r.CodeName128, 
	CASE WHEN TypeID4 = 1 THEN 'Elixir' ELSE 'Powder' END as 'ItemType', 
	CASE WHEN TypeID4 = 1 THEN CASE WHEN i.ItemClass = 1 THEN 'A' ELSE 'B' END ELSE 'D' + CONVERT(varchar(25), i.ItemClass) END as 'Type',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param2), 1, 1))) + '%' as '+1',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param2), 2, 1))) + '%' as '+2',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param2), 3, 1))) + '%' as '+3',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param2), 4, 1))) + '%' as '+4',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param3), 1, 1))) + '%' as '+5',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param3), 2, 1))) + '%' as '+6',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param3), 3, 1))) + '%' as '+7',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param3), 4, 1))) + '%' as '+8',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param4), 1, 1))) + '%' as '+9',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param4), 2, 1))) + '%' as '+10',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param4), 3, 1))) + '%' as '+11',
	CONVERT(varchar(25), CONVERT(INT, SUBSTRING(CONVERT(varbinary(4), i.Param4), 4, 1))) + '%' as '+12'
FROM	dbo._RefObjCommon r with(NOLOCK)
JOIN	dbo._RefObjitem i with(NOLOCK) on r.Link = i.ID
WHERE	TypeID1 = 3 AND TypeID2 = 3 AND TypeID3 = 10 AND TypeID4 in (1,2)

ORDER BY ItemType asc, i.ItemClass asc
»»



>.<
IceAmStiel is offline  
Thanks
7 Users
Old 03/16/2013, 20:12   #8
 
gigola123's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 718
Received Thanks: 378
<.<

Hah really nice sql , really like that sure my "tool" , I don't know if I should say "tool" was really easy to do. I know is useless front of your sql thing but I'll make a decrypt one for you fun.

There is the decryptor :
gigola123 is offline  
Old 03/16/2013, 20:34   #9
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Quote:
Originally Posted by gigola123 View Post
<.<

Hah really nice sql , really like that sure my "tool" , I don't know if I should say "tool" was really easy to do. I know is useless front of your sql thing but I'll make a decrypt one for you fun.

Aw hun! Just wanted to post the sql version as it might be handier for some people
IceAmStiel is offline  
Old 03/16/2013, 21:10   #10
 
gigola123's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 718
Received Thanks: 378
Quote:
Originally Posted by IceAmStiel View Post
Aw hun! Just wanted to post the sql version as it might be handier for some people
Thanks for your share if some people prefere to use my web site , there is also a decryptor for decrypt your actual alchemy rate I just made it.
gigola123 is offline  
Old 03/16/2013, 21:49   #11
 
Snow*'s Avatar
 
elite*gold: 1
Join Date: Nov 2011
Posts: 2,532
Received Thanks: 1,429
Awesome job.
Snow* is offline  
Old 03/16/2013, 22:50   #12
 
elite*gold: 0
Join Date: Mar 2007
Posts: 849
Received Thanks: 667
Quote:
Originally Posted by gigola123 View Post
I've also made a blue decrypt but if you are kind I'll release it .
are u ******* kidding me?

When i showed you how to decrypt the blues and make sense of the parameters i told you 2 things! Remember them again!
royalblade is offline  
Old 03/16/2013, 22:52   #13
 
gigola123's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 718
Received Thanks: 378
Quote:
Originally Posted by royalblade View Post
are u ******* kidding me?

When i showed you how to decrypt the blues and make sense of the parameters i told you 2 things! Remember them again!
You never told me how to decrypt the blue.. You joke ? You just show me how to get the "base" which wasn't the good method , your calculate was wrong ^^'
gigola123 is offline  
Old 03/16/2013, 22:57   #14
 
elite*gold: 0
Join Date: Mar 2007
Posts: 849
Received Thanks: 667
Quote:
Originally Posted by gigola123 View Post
You never told me how to decrypt the blue.. You joke ? You just show me how to get the "base" which wasn't the good method , your calculate was wrong ^^'
True i never TOLD you.. i showed it to you on teamviewer.
But its nice to see how people turn their backs on someone so quickly...
I posted this **** at ******** which includes the basic calculation method once u have the base parameter which i indeed showed and told how to get.

Code:
use sro_vt_shard
Declare @magimmo bigint
Declare @baseimmo bigint
declare @basealgo bigint
declare @immonum int
declare @bluenumalgo int
declare @Slot int
declare @charname varchar (64)
set @charname = 'Razgriz'
set @Slot = 17
set @immonum = 568387 -- Immortal number
set @basealgo = 51 -- dont touch
set @baseimmo=4294967347 -- dont touch
set @bluenumalgo = (@basealgo*(@immonum-1)) -- dont touch
set @magimmo = ((@baseimmo*@immonum)-@bluenumalgo) -- dont touch
Update _Items set MagParam1 = @magimmo where ID64 = 
(select itemid from _Inventory where CharID = 
(select CharID from _Char where CharName16 = @charname) 
and Slot = @Slot)
Did i not?

set @bluenumalgo = (@basealgo*(@immonum-1)) -- dont touch
set @magimmo = ((@baseimmo*@immonum)-@bluenumalgo) -- dont touch

is this not some sorta calculation for you?
royalblade is offline  
Old 03/16/2013, 22:59   #15
 
gigola123's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 718
Received Thanks: 378
Nop , I've made a different system , totaly different. If you want to see come at skype.
gigola123 is offline  
Reply


Similar Threads Similar Threads
Bug ALCHEMY PLUS RATE
08/12/2012 - SRO Private Server - 1 Replies
Hello everyone, I'm with a problem on my server with alchemy, every time an item will make it a bug +12 and +250 will without fail, with the rate of 100% correct! I wanted to see a way to block items from +15 to pass, if someone could help me with this, telling me where I can change the database, I would greatly appreciate it!
Alchemy Rate BUG.
06/28/2012 - SRO Private Server - 3 Replies
So ... I'm running on SQL2005 a database with 120CAP 13DG(13DG drops disabled jus via GM console workable) The thing is, I've setup a random alchemy rate, its working good trough 1-9DG, 10-11DG not working as intended, maby 12DG*NOT TESTED YET* http://i48.tinypic.com/2ik4oxg.png Am I missing something? because as I can see everything is setup the right way. On the pic its ITEM_ETC_ARCHEMY_REINFORCE_PROB_UP_A (1-12DG) ETC_ARCHEMY_REINFORCE_PROB_UP_B (1-12DG)
~~ Golden Silkroad~ PvP Server ~ Gold Rate x450 ~ Alchemy Rate x1,5 ~~
06/25/2012 - SRO PServer Advertising - 4 Replies
Take part of our server project and enjoy the special properties below : _________________________________________________ _ _______________ Gold Rate: 450x Level Cap: 110 Alchemy Rates: 1,5x Exp Rate: 0x ( PvP Server ) Europe / China Chars _________________________________________________ _ _______________ Daily events like Unique Event, Hide & Seek, PvP Event
RappelzSro[Exp:700x/Party Exp Rate:750x/Gold Drop Rate:60x/Alchemy Rate:20x/
05/27/2012 - SRO PServer Advertising - 3 Replies
Greetings. Welcome to Rappelz-Sro Online Server Info Client Version: 1.001 Exp Rate: 700x Party Exp Rate: 750x Gold Drop Rate: 60x
Help alchemy Rate
01/25/2012 - SRO Private Server - 1 Replies
how i can set my alchemy rate to 10x



All times are GMT +2. The time now is 00:33.


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.