SY_Notify
V 2.2
CREATE TABLE IF NOT EXISTS ` sy_notify ` (
` identifier ` varchar ( 65 ) DEFAULT NULL ,
` position ` longtext DEFAULT NULL ,
UNIQUE KEY ` identifier ` ( ` identifier ` ) USING HASH
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;
ensure SY_Notify
ใน server.cfg ของคุณหากต้องการแสดงการแจ้งเตือนคุณควรเรียกดังนี้:
exports [ ' SY_Notify ' ]: Alert ( " Title " , " Message " , Time , ' type ' )
TriggerClientEvent ( ' SY_Notify:Alert ' , source , " Title " , " Message " , Time , ' type ' )
หากต้องการตั้งเวลาแสดงการแจ้งเตือน ให้ใช้:
[1 second]
[2 seconds]
[5 seconds]
[10 seconds]
หากต้องการเปลี่ยนประเภทการแจ้งเตือน ให้ใช้การแจ้งเตือนประเภทนี้:
หากคุณต้องการเพิ่มการแจ้งเตือนนี้เป็นค่าเริ่มต้นใน ESX LEGACY ให้เพิ่มรหัสที่กำหนดใน @es_extensed/client/function.lua
function ESX . ShowNotification ( message , type , length )
if GetResourceState ( " esx_notify " ) ~= " missing " then
exports [ " esx_notify " ]: Notify ( type , length , message )
else
print ( " [^1ERROR^7] ^5ESX Notify^7 is Missing! " )
end
end
แทนที่ด้วย
function ESX . ShowNotification ( message , type , length )
if GetResourceState ( " SY_Notify " ) ~= " missing " then
exports [ ' SY_Notify ' ]: Alert ( " NOTIFICATION " , message , length , type )
else
print ( " [^1ERROR^7] ^5SY_NOTIFY^7 is Missing! " )
end
end