ps ui
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 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 " )