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
+22
View File
@@ -0,0 +1,22 @@
quest shop_reminder begin
state start begin
function valid_account_id(frequency)
return math.mod(pc.get_account_id(), frequency) == 0
end
when 30316.use begin
frequency = game.get_event_flag("shop_frequency")
if game.get_event_flag("shop_reminder") == 1 then
say("hallo")
local c = select(gameforge.locale.guild.yes, gameforge.locale.guild.no)
if 1 == c then
game.open_web_mall()
else
return
end
end -- endif shop_reminder flag
end -- endif login
end -- endbegin state start
end -- endbegin quest