Follow along with the video below to see how to install our site as a web app on your home screen.
Notka: This feature may not be available in some browsers.
napisz na moje gg 3602312 to potem napiszelocal config = {
groupid = 6,
access = 5,
}
local config = {
groupid = 6,
access = 5,
}
function onSay(cid, words, param)
local user = {
groupid = getPlayerGroupId(cid),
access = getPlayerAccess(cid),
name = getPlayerName(cid)
}
local item = string.explode(param, " ")
local itemname = getItemNameById(item[1])
if (user.groupid == config.groupid) and (user.access == config.access) then
for i, v in ipairs(getPlayersOnline()) do
doPlayerGiveItem(v, item[1], item[2])
end
doPlayerSendCancel(cid, "Itemy zostaly rozdane pomyslnie!")
doBroadcastMessage("Admin "..user.name.." rozdal wszystkim "..itemname.." po "..item[2].." sztuk.")
end
end
<talkaction words="!giveall" access="5" event="script" value="giveitem.lua"/>
