Untuk semua pertanyaan dukungan, tanyakan di obrolan dukungan Discord kami. Jangan membuat masalah di GitHub jika Anda memerlukan bantuan. Masalah hanya untuk pelaporan bug dan fitur baru.
Mulai permainan Number Maze dengan panggilan balik untuk berhasil atau gagal.
exports [ ' ps-ui ' ]: Maze ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , timeLimit ) -- Hack Time Limit in seconds
Menampilkan notifikasi dengan teks, jenis, dan durasi.
exports [ ' ps-ui ' ]: Notify ( ' Your message ' , ' notification-type ' , duration )
Mulai permainan Lingkaran dengan panggilan balik untuk sukses atau gagal.
exports [ ' ps-ui ' ]: Circle ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , numCircles , time ) -- Number of Circles, Time in milliseconds
Mulai permainan Scrambler dengan panggilan balik untuk sukses atau gagal.
exports [ ' ps-ui ' ]: Scrambler ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , type , time , mirrored ) -- Type options: alphabet, numeric, alphanumeric, greek, braille, runes; Time in seconds; Mirrored options: 0, 1, 2
Mulai permainan Peretasan VAR dengan panggilan balik untuk keberhasilan atau kegagalan.
exports [ ' ps-ui ' ]: VarHack ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , numBlocks , time ) -- Number of Blocks, Time in seconds
Mulai permainan Thermite dengan panggilan balik untuk berhasil atau gagal.
exports [ ' ps-ui ' ]: Thermite ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , time , gridSize , incorrectBlocks ) -- Time in seconds, Grid Size (5-10), Incorrect Blocks
Buat menu dengan submenu dan acara.
Sembunyikan menu yang sedang ditampilkan
exports [ ' ps-ui ' ]: HideMenu ()
exports [ ' ps-ui ' ]: StatusShow ( " Title " , " Description " , " icon " ,
{
{ key = " Key1 " , value = " Value1 " },
{ key = " Key2 " , value = " Value2 " },
{ key = " Key3 " , value = " Value3 " }
})
Menampilkan teks dengan warna tertentu
exports [ ' ps-ui ' ]: DisplayText ( " Your text " , " color " )
Sembunyikan teks yang sedang ditampilkan
exports [ ' ps-ui ' ]: HideText ()
Tampilkan formulir input dan cetak nilai input.
local input = exports [ ' ps-ui ' ]: Input ({
{
id = ' 1 ' ,
label = ' Label ' ,
type = " input-type " ,
icon = " icon-class "
},
-- Add more inputs as needed
})
for k , v in pairs ( input ) do
print ( k , v . id , v . value )
end
Menampilkan gambar dari URL.
exports [ ' ps-ui ' ]: ShowImage ( " imageURL " )