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,27 @@
if get_time ( ) > pc . getqf ( "next_time" ) or pc . getqf ( "next_time" ) == 0 then
pc . setqf ( "next_time" , get_time ( ) + 20 )
local yang_amount_1 = item . get_socket ( 0 )
say_title ( gameforge . is_yang . _010_sayTitle )
say ( string . format ( gameforge . is_yang . _020_say , yang_amount_1 ) )
local choice = select ( locale . yes , locale . no )
if choice == 2 then
return
end
say_title ( gameforge . is_yang . _010_sayTitle )
local current_gold = pc . get_gold ( )
if current_gold + yang_amount_1 >= 2e+09 then
say ( gameforge . is_yang . _040_say )
else
local yang_amount_2 = item . get_socket ( 0 )
if yang_amount_1 == yang_amount_2 then
say ( gameforge . is_yang . _030_say )
pc . changegold ( yang_amount_1 )
item . remove ( )
pc . setqf ( "next_time" , get_time ( ) + 20 )
else
char_log ( pc . get_player_id ( ) , "IS_YANG_HACK" , yang_amount_1 .. " not match: " .. yang_amount_2 )
end
end
else
syschat ( string . format ( gameforge . is_yang . _050_syschat , pc . getqf ( "next_time" ) - get_time ( ) ) )
end