Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Remove Euro Items

Status
Not open for further replies.
Junior Spellweaver
Joined
Sep 13, 2011
Messages
100
Reaction score
110
Well finally, I made it. For all the oldschool freaks =)

Here is the query:

USE [SRO_VT_SHARD_INIT]
GO
UPDATE dbo._RefDropItemAssign
SET DropCount = 0
WHERE RefItemID BETWEEN 14181 AND 14869

UPDATE dbo._RefDropItemAssign
SET DropCount = 0
WHERE RefItemID BETWEEN 12844 AND 14180

UPDATE dbo._RefDropItemAssign
SET DropCount = 0
WHERE RefItemID BETWEEN 11417 AND 12843

UPDATE dbo._RefDropItemAssign
SET DropCount = 0
WHERE RefItemID BETWEEN 10897 AND 11416


UPDATE dbo._RefDropItemAssign
SET Prob_Absolute = 0
WHERE RefItemID BETWEEN 14181 AND 14869

UPDATE dbo._RefDropItemAssign
SET Prob_Absolute = 0
WHERE RefItemID BETWEEN 12844 AND 14180

UPDATE dbo._RefDropItemAssign
SET Prob_Absolute = 0
WHERE RefItemID BETWEEN 11417 AND 12843

UPDATE dbo._RefDropItemAssign
SET Prob_Absolute = 0
WHERE RefItemID BETWEEN 10897 AND 11416



UPDATE dbo._RefDropItemAssign
SET Prob_Relative = 0
WHERE RefItemID BETWEEN 14181 AND 14869

UPDATE dbo._RefDropItemAssign
SET Prob_Relative = 0
WHERE RefItemID BETWEEN 12844 AND 14180

UPDATE dbo._RefDropItemAssign
SET Prob_Relative = 0
WHERE RefItemID BETWEEN 11417 AND 12843

UPDATE dbo._RefDropItemAssign
SET Prob_Relative = 0
WHERE RefItemID BETWEEN 10897 AND 11416
 
Newbie Spellweaver
Joined
Sep 28, 2011
Messages
24
Reaction score
0
Re: [TUT] Remove Euro Items

love u ty very much!
 
Junior Spellweaver
Joined
Aug 3, 2005
Messages
144
Reaction score
3
Re: [TUT] Remove Euro Items

How about euro items in shops ?
 
Newbie Spellweaver
Joined
Oct 5, 2012
Messages
66
Reaction score
1
Thank you very much for this, it really helped me.
 
Retired
Joined
Oct 28, 2013
Messages
536
Reaction score
103
Hm.
Isn't it already that easy disabling the service of EU declared items? teleport links and data? Mobs located to that areas? Same for the declared drops? Commenting out procedures related to EU operations and functions?

Oh well, I assume, most of the people here just don't even know how to modify stuff inside the SQL instance.
 
very nice
Joined
Jul 5, 2013
Messages
518
Reaction score
80
Code:
Update _RefObjCommon Set Service = '1' Where Codename128 like '%ITEM_EU%'

i think that's faster :3
 
Status
Not open for further replies.
Back
Top