اذ تبي ترسل دعوة استخدم
triggerServerEvent("onPlayerInvite", localPlayer, to)
to : هو الاعب الي تبي ترسله دعوة
بعدين استخدم ذا الكود
Server
addEvent("onPlayerInvite", true)
addEventHandler("onPlayerInvite", root, function(to)
triggerClientEvent(to, "showAcceptWindow", to, source)
end)
Client
invites = { }
addEvent("showAcceptWindow", true)
addEventHandler("showAcceptWindow", root, function(from)
guiSetVisible(window, true)
showCursor(true)
invites[source] = from
end)
addEventHandler("onClientGUIClick", resourceRoot, function( )
if invites[localPlayer] and (source == accept or source == decline) then
if source == accept then
setElementPosition(localPlayer, x, y, z)
setElementPosition(invites[localPlayer], x, y, z)
end
guiSetVisible(window, false)
showCursor(false)
invites[source] = nil
end
end)
accept : زر القبول
decline : زر الرفض
window : نافذة القبول والرفض
x, y, z : مكان الاجتماع