content updates

This commit is contained in:
Emagi 2025-08-09 00:00:06 +00:00
parent f37b187946
commit 8aac48b271
4 changed files with 51 additions and 2 deletions

View file

@ -0,0 +1,11 @@
--[[
Script Name : ItemScripts/aGigglegibbergoblingamblingametoken.lua
Script Author : image
Script Date : 2025.08.08 11:08:21
Script Purpose :
:
--]]
function obtained(Item, Player)
-- this was required to trigger the Item properly being added to the player for triggering Lotto
end

View file

@ -5,6 +5,7 @@
Script Purpose :
:
--]]
require "SpawnScripts/Generic/NPCModule"
local Quest2 = 5783
local greetingsTable = { "voiceover/english/voice_emotes/greetings/greetings_1_1034.mp3",
@ -12,6 +13,7 @@ local Quest2 = 5783
"voiceover/english/voice_emotes/greetings/greetings_3_1034.mp3"};
function spawn(NPC, Spawn)
human(NPC)
end
@ -83,4 +85,7 @@ end
function respawn(NPC)
spawn(NPC)
end
end

View file

@ -0,0 +1,34 @@
--[[
Script Name : SpawnScripts/Antonica/acoldwindpikeStream.lua
Script Author : lordpazuzu
Script Date : 2025.08.08 05:08:33
Script Purpose :
:
--]]
require "SpawnScripts/Generic/NPCModule"
function spawn(NPC)
NPCModule(NPC, Spawn)
RandomMovement(NPC, Spawn, 4, -4, 2, 8, 15)
ChooseClass(NPC)
end
function respawn(NPC, Spawn)
spawn(NPC)
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
end
function ChooseClass(NPC)
SetClass = MakeRandomInt(1,2)
if SetClass == 1 then
SpawnSet(NPC, "class", 1)
SetSpellList(NPC, 291)
elseif SetClass == 2 then
SpawnSet(NPC, "class", 31)
SetSpellList(NPC, 295)
end
end

View file

@ -19,7 +19,6 @@ function precast(Caster, Target)
for k,v in ipairs(targets) do
if GetID(Target) == GetID(v) then
return true
end
end
end
end