Register for your free account! | Forgot your password?

You last visited: Today at 19:28

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

Advertisement



VSro Stackable Limit ?

Discussion on VSro Stackable Limit ? within the SRO Private Server forum part of the Silkroad Online category.

Reply
 
Old   #1
 
flatro22's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 190
Received Thanks: 15
VSro Stackable Limit ?

I making this thread to ask you guys , how i can make stackable items and vsro? I was searching too long so i asking...
flatro22 is offline  
Old 11/27/2011, 03:02   #2
 
emptyz's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 505
Received Thanks: 203
32767, I guess, but may not be true, test it out to be sure :P
emptyz is offline  
Old 11/27/2011, 14:46   #3
 
flatro22's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 190
Received Thanks: 15
Wher i must change and wher?
flatro22 is offline  
Old 11/28/2011, 20:29   #4
 
flatro22's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 190
Received Thanks: 15
bump
flatro22 is offline  
Old 12/01/2011, 15:45   #5
 
flatro22's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 190
Received Thanks: 15
bump
flatro22 is offline  
Old 12/05/2011, 22:07   #6
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
PHP Code:
USE SRO_VT_SHARD
Declare @NEWMaxStack int
Declare @ItemID int

--##########################
SET @NEWMaxStack 75 /* e.g. for the new Stack */
SET @ItemID '' -- ID from ItemData.txt e.gSET @ItemID '4'
--##########################

UPDATE dbo._RefObjItem
SET MaxStack 
= @NEWMaxStack
WHERE ID 
= (SELECT Link FROM _RefObjCommon WHERE ID like @ItemID
through a query.. and change it at the itemdata.txt files within the Media.pk2

Change only the values between the ###!
IceAmStiel is offline  
Thanks
1 User
Old 12/06/2011, 19:24   #7
 
flatro22's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 190
Received Thanks: 15
Big thanks!
flatro22 is offline  
Old 01/13/2012, 17:56   #8
 
elite*gold: 0
Join Date: Jan 2009
Posts: 35
Received Thanks: 0
Quote:
Originally Posted by IceAmStiel View Post
PHP Code:
USE SRO_VT_SHARD
Declare @NEWMaxStack int
Declare @ItemID int

--##########################
SET @NEWMaxStack 75 /* e.g. for the new Stack */
SET @ItemID '' -- ID from ItemData.txt e.gSET @ItemID '4'
--##########################

UPDATE dbo._RefObjItem
SET MaxStack 
= @NEWMaxStack
WHERE ID 
= (SELECT Link FROM _RefObjCommon WHERE ID like @ItemID
through a query.. and change it at the itemdata.txt files within the Media.pk2

Change only the values between the ###!
how can I know what is ID for stones and elixires ?
benossa is offline  
Old 01/14/2012, 09:39   #9
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Quote:
Originally Posted by benossa View Post
how can I know what is ID for stones and elixires ?
The ID is written at the beginning of every line e.g.
ID 8 = ITEM_ETC_HP_POTION_05 @ itemdata5k

I actually had it at first with the Spawn Code, but removed it again - thought it's easier with ID's


EDIT:

Added it again..(fill either the ID or the spawncode in, only 1! Between the #'s)
PHP Code:
USE SRO_VT_SHARD
Declare @NEWMaxStack varchar(10)
Declare @
ItemID int
Declare @oldStack varchar(10)
Declare @
SpawnCodeID varchar(50)

/*##############################################################################*/

SET @NEWMaxStack 75    /* e.g. stackable up to 75 */
SET @ItemID ''            /* ID of the Item ofrom the itemdata.txt files */
SET @SpawnCodeID 'ITEM_ETC_HP_POTION_01'

/*##############################################################################*/

SET @ItemID = (Select ID from _RefObjCommon WHERE CodeName128 like @SpawnCodeID)
SET @oldStack = (SELECT MaxStack FROM _RefObjItem WHERE ID like (SELECT Link FROM _RefObjCommon WHERE ID like @ItemID))
UPDATE dbo._RefObjItem SET MaxStack = @NEWMaxStack WHERE ID = (SELECT Link FROM _RefObjCommon WHERE ID like @ItemID)

/* Which Itemdata.txt is affected in the Media.pk2*/
Declare @newItemID varchar(5)
IF (@
ItemID 5000SET @newItemID 5000
else if (@ItemID 10000SET @newItemID 10000
else if (@ItemID 15000SET @newItemID 15000
else if (@ItemID 20000SET @newItemID 20000
else if (@ItemID 25000SET @newItemID 25000
else if (@ItemID 30000SET @newItemID 30000
else if (@ItemID 35000SET @newItemID 35000
else if (@ItemID 40000SET @newItemID 40000
else if (@ItemID >= 40000SET @newItemID 45000
/*END which Itemdata.txr*/

Declare @CodeName varchar(74)
Declare @
DDJ varchar(74)
SET @CodeName = (SELECT CodeName128 FROM _RefObjCommon WHERE ID like @ItemID)
SET @DDJ = (SELECT AssocFileIcon128 FROM _RefObjCommon WHERE ID like @ItemID)

/* Paths */
print ''
print '@ Media\server_dep\silkroad\textdata\itemdata_'+@newItemID+'.txt'
print ''
print 'Change the line within the Itemdata.txt file like stated below:'
print ''
print 'Press CTRL+F and paste '+'"'+@CodeName+'"'+' into the box and search for the line at the file.'
print 'Scroll to the right till you reach '+'"'+@DDJ+'"'+' and change the value behind the 2x "xxx" from '+'"'+@oldStack+'"'+' to '+'"'+@NEWMaxStack+'"'+'.' 
+throws you at the Messsage window out where and what exactly you need to change.
IceAmStiel is offline  
Old 03/29/2012, 02:40   #10
 
qalli's Avatar
 
elite*gold: 0
Join Date: Dec 2008
Posts: 74
Received Thanks: 4
Code:
USE SRO_VT_SHARD
Declare @NEWMaxStack varchar(10)
Declare @ItemID int
Declare @oldStack varchar(10)
Declare @SpawnCodeID varchar(50)

/*##############################################################################*/

SET @NEWMaxStack = 50	
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_STR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_INT_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_DUR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_HR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_EVADE_BLOCK_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_EVADE_CRITICAL_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_ER_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_HP_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_MP_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_FROSTBITE_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_ESHOCK_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_BURN_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_POISON_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_ZOMBIE_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_SOLID_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_LUCK_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_ASTRAL_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_ATHANASIA_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_MAGICSTONE_APE_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_PA_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_PASTR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_MA_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_MAINT_12'
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_CRITICAL_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_HR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_PD_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_PDSTR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_MD_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_MDINT_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_ER_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_BR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_PAR_12' 
SET @SpawnCodeID = 'ITEM_ETC_ARCHEMY_ATTRSTONE_MAR_12'  

/*##############################################################################*/

SET @ItemID = (Select ID from _RefObjCommon WHERE CodeName128 like @SpawnCodeID)
SET @oldStack = (SELECT MaxStack FROM _RefObjItem WHERE ID like (SELECT Link FROM _RefObjCommon WHERE ID like @ItemID))
UPDATE dbo._RefObjItem SET MaxStack = @NEWMaxStack WHERE ID = (SELECT Link FROM _RefObjCommon WHERE ID like @ItemID)

/* Which Itemdata.txt is affected in the Media.pk2*/
Declare @newItemID varchar(5)
IF (@ItemID < 5000) SET @newItemID = 5000
else if (@ItemID < 10000) SET @newItemID = 10000
else if (@ItemID < 15000) SET @newItemID = 15000
else if (@ItemID < 20000) SET @newItemID = 20000
else if (@ItemID < 25000) SET @newItemID = 25000
else if (@ItemID < 30000) SET @newItemID = 30000
else if (@ItemID < 35000) SET @newItemID = 35000
else if (@ItemID < 40000) SET @newItemID = 40000
else if (@ItemID >= 40000) SET @newItemID = 45000
/*END which Itemdata.txr*/

Declare @CodeName varchar(74)
Declare @DDJ varchar(74)
SET @CodeName = (SELECT CodeName128 FROM _RefObjCommon WHERE ID like @ItemID)
SET @DDJ = (SELECT AssocFileIcon128 FROM _RefObjCommon WHERE ID like @ItemID)

/* Paths */
qalli is offline  
Old 03/29/2012, 03:04   #11
 
elite*gold: 0
Join Date: Jun 2011
Posts: 802
Received Thanks: 393
here is a good tut
H34D_B4NG3R is offline  
Old 02/02/2013, 00:58   #12
 
elite*gold: 0
Join Date: Apr 2012
Posts: 41
Received Thanks: 26
IceAmStiel
How to add vigor in npc please i need help !
1337Demon is offline  
Reply


Similar Threads Similar Threads
duping stackable with wpe
03/10/2014 - WoW PServer Exploits, Hacks & Tools - 106 Replies
Ok, this is a new method discovered on my server the other day (fixed there or I wouldn't be posting it ) open up WoW. Then open up WPE pro. Logon with say 50 badges of Justice. In WPE pro hit target then target your wow.exe. Next go down to the filter 1 check in the box double click it a new menu will open up with colums and 2 rows that say search and modify. Under colum 8 under search type in 13. Under modify type 14 then hit apply. hit the big on button and go back onto your wow....
[B] EA-Origin Acc. BFBC2 Limit Edition & Crysis2 Limit Edition [S] PSC/E*g /uvm...
10/19/2011 - elite*gold Trading - 0 Replies
Hey , Ich Vkfe/Tausche mein eigenen EA-Origin acc. Vorhanden: ID/EMAIL PW Inhalt des acc's.: BattleField Bat Company 2 + Vietnam
New Hack No Card Limit/kein karten limit
05/12/2010 - General Gaming Discussion - 3 Replies
#reoved
Stackable eps, Help Plz
09/05/2009 - EO PServer Hosting - 5 Replies
anybody have a guide to adding stackable eps, plz dont say search because they all want to use there itemtype.dat a small guide would be nice and yes i can hex edit the itemtype, if any 1 can help plz reply, Funhacker u told me before in private message but i deleted it by accident lmao.:rolleyes:
stackable items
09/12/2008 - EO PServer Hosting - 10 Replies
hey all, just wondering how would you make a item stackable like the random portals ect thanks all :)



All times are GMT +2. The time now is 19:28.


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.