Register for your free account! | Forgot your password?

You last visited: Today at 01:55

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

Advertisement



MAGPARAM VALUES

Discussion on MAGPARAM VALUES within the SRO Private Server forum part of the Silkroad Online category.

Reply
 
Old   #1
 
spinal2's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 241
Received Thanks: 16
MAGPARAM VALUES

Someone Know values from MAGPARAM Values for AVATAR and JOBSUITS ?
spinal2 is offline  
Old 09/12/2015, 00:56   #2
 
WickedNite.'s Avatar
 
elite*gold: 15
Join Date: Jul 2014
Posts: 1,602
Received Thanks: 1,357
You put them on the items and find out yourself from smc? Some people are even lazy to think.

Although job suits support only 2 blues, when I get home in the morning I can share the params for str/int.
WickedNite. is offline  
Thanks
1 User
Old 09/12/2015, 01:02   #3
 
spinal2's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 241
Received Thanks: 16
Quote:
Originally Posted by TheWickedNite View Post
You put them on the items and find out yourself from smc? Some people are even lazy to think.

Although job suits support only 2 blues, when I get home in the morning I can share the params for str/int.
Thanks .. share plz .. i want too ADD blues in AVATAR FLAG.. in RefScrappackageitem take Gameserver Crash when add ...
spinal2 is offline  
Old 09/12/2015, 01:29   #4
 
WickedNite.'s Avatar
 
elite*gold: 15
Join Date: Jul 2014
Posts: 1,602
Received Thanks: 1,357
That's because each item has its own params, not all of them work for each item.
WickedNite. is offline  
Old 09/12/2015, 02:23   #5
 
Eslam Galull's Avatar
 
elite*gold: 85
Join Date: Aug 2010
Posts: 1,278
Received Thanks: 521
i didnt try add dif. blues on avatars than the basics from the smith

about Job Suits & other caps this may helps you


Code:
	    IF (@ItemRefID = 42880 ) -- JOB Suits & Caps Max Blue Scrolls
		BEGIN
		IF  (Select Level From SRO_VT_SHARD.dbo._CharTrijob Where CharID = @CharID ) = 7
		BEGIN
				UPDATE SRO_VT_SHARD.dbo._Items set MagParamNum='8',MagParam1='30064771144',MagParam2= '30064771150',MagParam3='5583457484950',MagParam4= '5583457484962',MagParam5='257698037898',MagParam6='85899346100',MagParam7='85899346106',MagParam8='85899346088' WHERE ID64 IN (select ItemID from SRO_VT_SHARD.dbo._Inventory where CharID = @CharID and Slot = '8')
				END
ELSE
BEGIN
				Declare @charN Varchar(64) = ( Select CharName16 FROM SRO_VT_SHARD.dbo._Char Where Charid = @CharID )
				 insert _PmSystem(Sent, Message, ToPlayer) values(0,'You didnt match the required Rule to use this scroll ( Job Level Must Be Level 7),You Will not get the scroll back' , @charN)
				 END
				END
Eslam Galull is offline  
Old 09/12/2015, 03:43   #6
 
spinal2's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 241
Received Thanks: 16
Quote:
Originally Posted by its.soul View Post
i didnt try add dif. blues on avatars than the basics from the smith

about Job Suits & other caps this may helps you


Code:
	    IF (@ItemRefID = 42880 ) -- JOB Suits & Caps Max Blue Scrolls
		BEGIN
		IF  (Select Level From SRO_VT_SHARD.dbo._CharTrijob Where CharID = @CharID ) = 7
		BEGIN
				UPDATE SRO_VT_SHARD.dbo._Items set MagParamNum='8',MagParam1='30064771144',MagParam2= '30064771150',MagParam3='5583457484950',MagParam4= '5583457484962',MagParam5='257698037898',MagParam6='85899346100',MagParam7='85899346106',MagParam8='85899346088' WHERE ID64 IN (select ItemID from SRO_VT_SHARD.dbo._Inventory where CharID = @CharID and Slot = '8')
				END
ELSE
BEGIN
				Declare @charN Varchar(64) = ( Select CharName16 FROM SRO_VT_SHARD.dbo._Char Where Charid = @CharID )
				 insert _PmSystem(Sent, Message, ToPlayer) values(0,'You didnt match the required Rule to use this scroll ( Job Level Must Be Level 7),You Will not get the scroll back' , @charN)
				 END
				END

What About Query to create Tab _PmSystem and Declare options to @ItemRefID ?


.
spinal2 is offline  
Old 09/12/2015, 05:07   #7
 
Royalblade*'s Avatar
 
elite*gold: 85
Join Date: Feb 2014
Posts: 1,055
Received Thanks: 1,643
Quote:
Originally Posted by its.soul View Post
i didnt try add dif. blues on avatars than the basics from the smith

about Job Suits & other caps this may helps you


Code:
	    IF (@ItemRefID = 42880 ) -- JOB Suits & Caps Max Blue Scrolls
		BEGIN
		IF  (Select Level From SRO_VT_SHARD.dbo._CharTrijob Where CharID = @CharID ) = 7
		BEGIN
				UPDATE SRO_VT_SHARD.dbo._Items set MagParamNum='8',MagParam1='30064771144',MagParam2= '30064771150',MagParam3='5583457484950',MagParam4= '5583457484962',MagParam5='257698037898',MagParam6='85899346100',MagParam7='85899346106',MagParam8='85899346088' WHERE ID64 IN (select ItemID from SRO_VT_SHARD.dbo._Inventory where CharID = @CharID and Slot = '8')
				END
ELSE
BEGIN
				Declare @charN Varchar(64) = ( Select CharName16 FROM SRO_VT_SHARD.dbo._Char Where Charid = @CharID )
				 insert _PmSystem(Sent, Message, ToPlayer) values(0,'You didnt match the required Rule to use this scroll ( Job Level Must Be Level 7),You Will not get the scroll back' , @charN)
				 END
				END
Dont use this. That dude is an idiot who doesn't know how to write queries. He's lower than 7th graders.

Seriously its.soul... since you are stupid, stop sharing your idiotic shit with others. Let them learn properly.

First of all.. there are tables which let you put BLUES on items right from the start.

Go for SELECT * FROM sys.objects WHERE name LIKE '%param1%' and find the table.
Then add your shitty blues there.

Learn how to learn, not simply solve ur crap on the fly.
Royalblade* is offline  
Thanks
3 Users
Old 09/12/2015, 06:30   #8
 
spinal2's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 241
Received Thanks: 16
Any Last SMC can add and edit AVATAR like Golden Flag and SUITS JOBS ?

Quote:
Originally Posted by Royalblade* View Post
Dont use this. That dude is an idiot who doesn't know how to write queries. He's lower than 7th graders.

Seriously its.soul... since you are stupid, stop sharing your idiotic **** with others. Let them learn properly.

First of all.. there are tables which let you put BLUES on items right from the start.

Go for SELECT * FROM sys.objects WHERE name LIKE '%param1%' and find the table.
Then add your ****** blues there.

Learn how to learn, not simply solve ur **** on the fly.
if i add one skill type in _RefSkill with thats param like str/int 6 atk rat 60% and parry rate 60% ??

any idea how make to it work?
spinal2 is offline  
Reply


Similar Threads Similar Threads
[RELEASE] MagParam Decrypter
05/24/2015 - SRO PServer Guides & Releases - 8 Replies
Hello there... I coded some shit that will help you Decrypt MagParams.. Requirements -You need a database with SHARD, why?, i was lazy to write the whole thing so i just used a query to make it easier. Theory ##### Example
MagParam Decrypt
09/18/2014 - SRO Private Server - 5 Replies
Hi. I need MagParam Columns decrypt. For Example: 30064771150 - Int 6 How can i decrypt it php or c# ?



All times are GMT +2. The time now is 01:55.


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.