how to know the spawn points uniques.

09/04/2014 03:32 eliveltonw#1
how to know the spawn points uniques? The original spawns all knows, but the server have different, can i find out this seeing the data or map.pk2?
:confused::confused:
09/04/2014 03:36 Crue*#2
Tab_refnest
09/05/2014 04:34 ​Exo#3
Code:
Declare  @NestID INT

   SELECT @NestID= T.dwTacticsID
          
   FROM Tab_RefTactics T
   INNER JOIN _RefObjCommon O
   ON O.ID = T.dwObjID
   WHERE CodeName128 = 'Mob_Code_Here' 
   
   SELECT fLocalPosX,fLocalPosY,fLocalPosZ FROM Tab_RefNest WHERE dwTacticsID=@NestID
I guess this should do it..