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
@@ -0,0 +1,5 @@
if number ( 1 , 300 ) == 1 then
pc . give_item2 ( 31019 , 1 )
notice_multiline ( gameforge . main_quest_lv91 . _550_1_notice , notice )
notice_multiline ( gameforge . main_quest_lv91 . _550_2_notice , notice )
end
@@ -0,0 +1,15 @@
if number ( 1 , 50 ) == 1 then
if pc . count_item ( 31026 ) < 100 then
pc . give_item2 ( 31026 , 1 )
local remain = 100 - pc . count_item ( 31026 )
if remain < 0 then
remain = 0
end
q . set_counter_value ( remain )
if pc . count_item ( 31026 ) >= 100 then
notice_multiline ( gameforge . main_quest_lv98 . _080_1_notice , notice )
notice_multiline ( gameforge . main_quest_lv98 . _080_2_notice , notice )
set_state ( "state1_3" )
end
end
end
@@ -0,0 +1,9 @@
if number ( 1 , 50 ) == 1 then
if pc . count_item ( 31026 ) < 100 then
pc . give_item2 ( 31026 , 1 )
if pc . count_item ( 31026 ) >= 100 then
notice_multiline ( gameforge . main_quest_lv98 . _080_1_notice , notice )
notice_multiline ( gameforge . main_quest_lv98 . _080_2_notice , notice )
end
end
end