PS UI
2.0.1
모든 지원 질문은 Discord 지원 채팅에 문의하세요. 도움이 필요한 경우 GitHub에서 문제를 생성하지 마세요. 문제는 버그 보고 및 새로운 기능에만 적용됩니다.
성공 또는 실패에 대한 콜백을 사용하여 숫자 미로 게임을 시작합니다.
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 Hack 게임을 시작합니다.
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 " )