mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
552 B
Lua
Executable file
23 lines
552 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Generic/Level4Difficulty2.lua
|
|
Script Purpose : Level set to 4 and and difficulty to 2
|
|
Script Author : Rylec
|
|
Script Date : 04-19-2020 02:18:22
|
|
Script Notes : Locations collected from Live
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
SpawnSet(NPC, "level", "4")
|
|
SpawnSet(NPC, "difficulty", "2")
|
|
SpawnSet(NPC, "hp", 35)
|
|
SpawnSet(NPC, "power", 20)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|