1234567891011121314151617181920 |
- --[[
- Script Name : SpawnScripts/Baubbleshire/scrapmetal.lua
- Script Purpose : scrap metal
- Script Author : Scatman
- Script Date : 2009.09.27
- Script Notes :
- --]]
- local SCRAPTASTIC = 328 -- was 26
- function spawn(NPC)
- SetRequiredQuest(NPC, SCRAPTASTIC, 1)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- end
|