blob: 391fab323b88c1b0f9610ef8ed3206d0303120c3 (
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
|