How to remove or disable a npc?

04/16/2019 15:14 iAmAndrew#1
quick question, i got a db that have alot new npcs, how can i disable them? dont need to remove from lines, only disable if its possible!

thanks!
04/16/2019 16:13 ZαKuRα#2
simply delete the position dbo.Tab_RefNest
04/16/2019 16:31 iAmAndrew#3
but how do i know is that npc? if dont say like STORE_NPC_NEW_AVATARS
04/17/2019 20:43 iAmAndrew#4
well i just simple move the teleport to one place that any player will never go there (GM ROOM closed for player ), so

#Closed
04/18/2019 00:25 VeRo!#5
You can use my querry to get the dwnestID
Quote:
USE [SRO_VT_SHARD]
SELECT [dwNestID] FROM [dbo].[Tab_RefNest] WHERE dwTacticsID IN
( SELECT [dwTacticsID] FROM [dbo].[Tab_RefTactics] WHERE dwObjID IN
(select ID from _RefObjCommon where CodeName128 like 'MOB_RM_ROC') )
than you can create a query to remove it.