Some useful Query

10/18/2012 19:13 ~Untouchable~#1
Some really useful queries to change things in your server(at least for me)
To change the mob slots(example you want to spawn niya generals in roc mountain instead of wing tribes then use this query):

To set elixir stacks:


To change plus of drops:


To add a new drop:


To set unique spawn/respawn times:
Little explain: 60 secs=minimum delay spawn time 120 secs:maximum delay,also calculate time of them accordingly to second.So 60=1 min


To add a new mob/unique spawn:I don't know how to add different spawn places like the other uniques,gotta check some table to figure out this..



To remove alchemy materials:


Feel free to ask question whatever you need,i'll try to help you as much as i can.
02/14/2013 00:46 sherio_3x#2
are you have a Query to remove item from DB by item ID ?
02/14/2013 04:58 鳳凰城#3
Quote:
Originally Posted by sherio_3x View Post
are you have a Query to remove item from DB by item ID ?
USE [SRO_VT_SHARD]
Exec [Dbo].[_SEEK_N_DESTROY_ITEM] ['your code here']
by Item ID , I don't think it's exist or , I can't find it in my hard disc.
02/17/2013 19:17 Menorhord#4
You have Query Make Alchemy Success 100% ?
12/15/2014 02:47 Bocc1337#5
i need a query to take drops off of mobs
12/15/2014 03:17 [NoReason]#6
Quote:
Originally Posted by sonsof2004 View Post
i need a query to take drops off of mobs
Off Of 3lek

select item ID Query
Code:
Select ID From _RefObjCommon Where Codename128 like 'ITEM CODE'
delete DROP FROM MONSTER
Code:
USE sro_vt_shard DELETE FROM _RefMonster_AssignedItemDrop where RefitemID like 'ITEM ID'
if you want to remove drop from specified monster use this query

Code:
DELETE FROM _RefMonster_AssignedItemDrop where refmonsterid='MONSTER ID' AND refitemid='ITEM ID'