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,16 @@
if pc . getqf ( "new_quest_premium_lv4_collect_count_1" ) < pc . getqf ( "neededAmountDrop1" ) then
if math . random ( 1 , 100 ) <= pc . getqf ( "dropProb1" ) then
drop = true
local index = pc . getqf ( "new_quest_premium_lv4_collect_count_1" ) + 1
pc . setqf ( "new_quest_premium_lv4_collect_count_1" , index )
pc . give_item2 ( pc . getqf ( "drop1" ) )
notice_multiline ( gameforge . new_quest_premium_lv4 . _130_notice , notice )
if pc . getqf ( "neededAmountDrop1" ) == pc . getqf ( "new_quest_premium_lv4_collect_count_1" ) then
notice_multiline ( gameforge . new_quest_premium_lv4 . _140_notice , notice )
q . done ( )
set_state ( "backto_trader" )
end
else
notice_multiline ( gameforge . new_quest_premium_lv4 . _150_notice , notice )
end
end
@@ -0,0 +1,5 @@
local s = number ( 1 , 100 )
if s <= 5 then
pc . give_item2 ( "30029" , 1 )
set_state ( "go_back_to_doctor" )
end