Files
wnsrc/addons/pillpack/lua/includes/modules/ppp_includes/join_prompt.lua
lifestorm 6a58f406b1 Upload
2024-08-04 23:54:45 +03:00

20 lines
554 B
Lua

--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
AddCSLuaFile()
if CLIENT then
function pk_pills.join_prompt(name, addr)
Derma_Query("Are you sure you want to join '" .. name .. "'?\nWARNING: You will exit your current game!", "", "Yes", function()
LocalPlayer():ConCommand("connect " .. addr)
end, "No")
end
end