PSUI
2.0.1
サポートに関するすべての質問については、Discord サポート チャットでお問い合わせください。サポートが必要な場合は、GitHub で問題を作成しないでください。問題はバグ報告と新機能のみを対象としています。
成功または失敗のコールバックを使用して Number Maze ゲームを開始します。
exports [ ' ps-ui ' ]: Maze ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , timeLimit ) -- Hack Time Limit in seconds
テキスト、タイプ、期間を含む通知を表示します。
exports [ ' ps-ui ' ]: Notify ( ' Your message ' , ' notification-type ' , duration )
成功または失敗のコールバックを使用して Circle ゲームを開始します。
exports [ ' ps-ui ' ]: Circle ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , numCircles , time ) -- Number of Circles, Time in milliseconds
成功または失敗のコールバックを使用して Scrambler ゲームを開始します。
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
成功または失敗のコールバックを使用して VAR ハック ゲームを開始します。
exports [ ' ps-ui ' ]: VarHack ( function ( success )
if success then
print ( " success " )
else
print ( " fail " )
end
end , numBlocks , time ) -- Number of Blocks, Time in seconds
成功または失敗のコールバックを使用して、Thermite ゲームを開始します。
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
サブメニューとイベントを含むメニューを作成します。
現在表示されているメニューを非表示にする
exports [ ' ps-ui ' ]: HideMenu ()
exports [ ' ps-ui ' ]: StatusShow ( " Title " , " Description " , " icon " ,
{
{ key = " Key1 " , value = " Value1 " },
{ key = " Key2 " , value = " Value2 " },
{ key = " Key3 " , value = " Value3 " }
})
テキストを指定した色で表示する
exports [ ' ps-ui ' ]: DisplayText ( " Your text " , " color " )
現在表示されているテキストを非表示にする
exports [ ' ps-ui ' ]: HideText ()
入力フォームを表示し、入力値を印刷します。
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
URLから画像を表示します。
exports [ ' ps-ui ' ]: ShowImage ( " imageURL " )