1234567891011121314151617181920212223242526272829303132 |
- --[[
- Script Name : SpawnScripts/Baubbleshire/SmithyFindlebop.lua
- Script Purpose : Smithy Findlebop <Weaponsmith>
- Script Author : Scatman
- Script Date : 2009.09.27
- Script Notes :
- --]]
- dofile("SpawnScripts/Generic/GenericWeaponsmithVoiceOvers.lua")
- function spawn(NPC)
- SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function InRange(NPC, Spawn)
- if math.random(0, 100) <= 25 then
- FaceTarget(NPC, Spawn)
- GenericWeaponsmithHail(NPC, Spawn)
- end
- end
- function LeaveRange(NPC, Spawn)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- GenericWeaponsmithHail(NPC, Spawn)
- end
|