blob: fdf16115501b5827b6a4e67bfda8a80f93a767bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
local users = {
"gabriel",
"survivalg",
"Maverick2797"
}
if event.punch then
for _,name in pairs(users) do
if event.name==name then interrupt_pos(POS(-2204,8,-676),"notify") return end
end
end
|