xackery / rebuildeq-v1

Rebuild Everquest
GNU Lesser General Public License v3.0
1 stars 0 forks source link

[#955 Kendall (Buffalo)] Guards in HHK ignore gobl... #1163

Closed xackery closed 7 years ago

xackery commented 8 years ago

Message: Guards in HHK ignore goblins. Ouch User: Kendall (Buffalo) (Shaman) (cid: 662030, accid: 75136, client: RoF2) at 05 Oct 16 15:47 UTC Location: #zone %!d(string=ecommons), %!f(int=22), -127.000000, -1833.000000 %!(EXTRA float64=4.378) Target: None

TheGrandPackard commented 7 years ago

This is probably due to a faction issue on the guards not being KOS to the goblins. Should be an easy database fix.

TheGrandPackard commented 7 years ago

To set all of the guards in Highkeep to be KoS to the pickclaw goblins in Highkeep, use these queries:

INSERT INTO npc_faction_entries SET npc_faction_id=1204, faction_id=249, value=0, npc_value=-1, temp=0; INSERT INTO npc_faction_entries SET npc_faction_id=1206, faction_id=249, value=0, npc_value=-1, temp=0; INSERT INTO npc_faction_entries SET npc_faction_id=1209, faction_id=249, value=0, npc_value=-1, temp=0;

Also, Ran Flamespinner is KoS to goblins as well:

INSERT INTO npc_faction_entries SET npc_faction_id=1189, faction_id=249, value=0, npc_value=-1, temp=0;

Note: this change will require an update to the shared memory to take effect.

TheGrandPackard commented 7 years ago

Also, to make the goblins aggressive to the guards, use this query:

INSERT INTO npc_faction_entries SET npc_faction_id=1197, faction_id=149, value=0, npc_value=-1, temp=0;

Note: this change will require an update to the shared memory to take effect.

xackery commented 7 years ago

added.

jonpackard commented 7 years ago

Confirmed fixed. Guards now attack goblins on sight.