Refactored directory structure, added game files from TMP

This commit is contained in:
2023-12-04 21:54:28 +02:00
parent c35f861d97
commit ff3388e795
7726 changed files with 564910 additions and 17 deletions

View File

@ -0,0 +1,18 @@
quest trash_npc begin
state start begin
when 20041.take with game.get_event_flag("trash_npc") == 0 begin -- to close if needed
say_npc()
say("" )
say("Remove item?")
say("" )
say_show_item(item.vnum)
say("")
local s = select("Yes", "No")
if s == 1 then
item.remove()
else
return
end
end
end
end