Restructured gamefiles, locale data loading refactoring, docker build fixes

This commit is contained in:
2024-05-25 20:00:26 +03:00
parent 27108d629a
commit 48ee253534
1046 changed files with 84 additions and 12989 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