View Single Post
  #6  
Old 05-19-2015, 10:30 AM
Aquaojo
Sarnak
 
Join Date: Feb 2012
Location: GA
Posts: 34
Default

So far I have figured out how to pull the mobs from Kael using this query:

SELECT * FROM spawn2 JOIN spawngroup ON spawngroup.id = spawn2.spawngroupID
JOIN spawnentry ON spawngroup.id = spawnentry.spawngroupID
JOIN npc_types ON spawnentry.npcID = npc_types.id
WHERE spawn2.zone LIKE 'kael'

Admittedly I am just learning about JOIN and figuring out how all this works...So anyone able to tell me how I would now add in:

UPDATE npc_types SET HP = HP * 0.75

in order to decrease all NPC HP in Kael by 25%??

I know it has to be right in front of my face, but I am missing it for some reason...

Thanks everyone!!
Reply With Quote