Advertisement
bucur35

qsdgeth

Sep 2nd, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.94 KB | None | 0 0
  1. /********************************
  2.     Tresspassers in the Water
  3. ********************************/
  4.  
  5. -- Script
  6.  
  7. SET @Guid := 4567950;
  8.  
  9. DELETE FROM `creature_template` WHERE  `entry`=46868 LIMIT 1;
  10. INSERT INTO `creature_template` (`entry`, `modelid1`, `modelid2`, `name`, `subname`, `IconName`, `minlevel`, `maxlevel`,
  11. `exp`, `faction_A`, `faction_H`, `mindmg`, `maxdmg`, `attackpower`, `baseattacktime`, `unit_class`, `family`, `minrangedmg`,
  12. `maxrangedmg`, `rangedattackpower`, `type`, `lootid`, `skinloot`, `mingold`, `maxgold`, `InhabitType`, `Health_mod`) VALUES
  13. (@Guid, 36385, 36386, 'Stillwater Slitherer', '', '', 82, 83, 2, 14, 14, 509, 683, 805, 2000, 1, 6, 371, 535, 146, 1, 46868, 46868, 15, 33, 1, 9);
  14.  
  15.  
  16. -- Spawn npc
  17.  
  18. DELETE FROM `creature` WHERE  `guid`=@Guid LIMIT 1;
  19. INSERT INTO `creature` (`guid`,  `id`,  `map`,  `modelid`,  `equipment_id`,  `position_x`,  `position_y`,  `position_z`,  
  20. `orientation`,  `spawntimesecs`) VALUES
  21. (@Guid+0, 46868, 1, 36385, 0, -9572.615234, -954.506775, 95.397865, 5.599866, 100),
  22. (@Guid+1, 46868, 1, 36385, 0, -9590.443359, -986.574646, 98.248528, 4.300032, 100),
  23. (@Guid+2, 46868, 1, 36385, 0, -9615.254492, -1018.995911, 75.530235, 4.174367, 100),
  24. (@Guid+3, 46868, 1, 36385, 0, -9638.652344, -973.499451, 66.062775, 1.123875, 100),
  25. (@Guid+4, 46868, 1, 36385, 0, -9625.760742, -935.184814, 74.333282, 2.582364, 100),
  26. (@Guid+5, 46868, 1, 36385, 0, -9662.057617, -932.829834, 61.588886, 2.582364, 100),
  27. (@Guid+6, 46868, 1, 36385, 0, -9636.456055, -883.977722, 69.701294, 0.642431, 100),
  28. (@Guid+7, 46868, 1, 36385, 0, -9591.530273, -883.344788, 75.508575, 6.170848, 100),
  29. (@Guid+8, 46868, 1, 36385, 0, -9560.581055, -853.524536, 81.527946, 2.000385, 100),
  30. (@Guid+9, 46868, 1, 36385, 0, -9548.017578, -812.676331, 80.923653, 3.370120, 100),
  31. (@Guid+10, 46868, 1, 36385, 0, -9519.665039, -778.673828, 82.698929, 0.433515, 100),
  32. (@Guid+11, 46868, 1, 36385, 0, -9589.807617, -822.883911, 75.842155, 1.732563, 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement