YES or Explain Question, about RefNest

07/26/2019 00:31 devdash#1
Iam about changing the whole map mobs places by switching the dwObjID on the RefTactics by replacing the new mob id with the old ones, is this is the right way to do ?

or will i regret later because this thing can't be undo later, because i will do alot of updates after, so backup thing wont be usefull

so please tell me if you have the right way to replace mobs with other mobs,

thanks in advance.
07/26/2019 03:09 chipno0p#2
Yes
07/26/2019 05:21 devdash#3
Quote:
Originally Posted by chipno0p View Post
Yes
thank you very much, i will wait for more replays so i can make sure.
07/26/2019 07:13 JohnDornel^#4
You can do it this way, but if you dont want to replace NPCs as well, you will have to exclude them. Something like


Code:
...where dwObjID NOT IN (SELECT ID FROM _RefObjCommon WHERE CodeName128 NOT LIKE 'NPC_%')
07/26/2019 11:21 devdash#5
Quote:
Originally Posted by JohnDornel^ View Post
You can do it this way, but if you dont want to replace NPCs as well, you will have to exclude them. Something like


Code:
...where dwObjID NOT IN (SELECT ID FROM _RefObjCommon WHERE CodeName128 NOT LIKE 'NPC_%')
thanks a lot for your replay, i will wait for more replays just to make sure.