По всем вопросам поддержки задавайте в нашем чате поддержки 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 ' ]: CreateMenu ({
{
id = " examplemenu " , -- has to be unique
header = " Menu Header " ,
text = " Menu Text " ,
icon = " icon-class " ,
color = " color " ,
event = " event-name " ,
args = { arg1 , arg2 },
server = false ,
subMenu = {
{
id = " examplesubmenu " , -- has to be unique
header = ' Submenu Header ' ,
icon = ' icon-class ' ,
color = ' color ' ,
event = " event-name " ,
args = { arg1 , arg2 },
},
},
},
})
Скрыть отображаемое в данный момент меню
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 " )