Initial commit: server + serverfiles

This commit is contained in:
Game
2026-08-17 17:31:44 +00:00
commit ff1237686b
17389 changed files with 868929 additions and 0 deletions
+18
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