1
0
forked from metin2/server

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,28 @@
quest horse_guard begin
state start begin
when 20349.chat.gameforge.horse_guard._10_npcChat begin
say_title(gameforge.horse_levelup._240_sayTitle)
local s=number(1, 7)
if 1>=s then -- 14.29% (1/7)
say(gameforge.horse_guard._20_say)
elseif 2>=s then -- 14.29% (1/7)
say(gameforge.horse_guard._30_say)
elseif 3>=s then -- 14.29% (1/7)
say(gameforge.horse_guard._40_say)
elseif 4>=s then -- 14.29% (1/7)
say(gameforge.horse_guard._50_say)
elseif 5>=s then -- 14.29% (1/7)
say(gameforge.horse_guard._60_say)
elseif 6>=s then -- 14.29% (1/7)
say(gameforge.horse_guard._70_say)
elseif 7>=s then -- 14.29% (1/7)
say(gameforge.horse_guard._80_say)
end
end
end
state __COMPLETE__ begin
when enter begin
q.done()
end
end
end