1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
addhook("say","cigara") function cigara(id, txt) if(txt=="!cigarette") or (txt=="!cig") then 			parse("sethealth " .. id .. " " .. player(id, "health") - 2) 			local x = player(id, "x") + math.sin(math.rad(player(id, "rot"))) * 16 			local y = player(id, "y") - math.cos(math.rad(player(id, "rot"))) * 16 			parse("effect \"smoke\" " .. x .. " " .. y .. " 10 30") 			parse("effect \"smoke\" " .. x .. " " .. y .. " 10 30") 			parse("effect \"smoke\" " .. x .. " " .. y .. " 10 30") 			parse("effect \"smoke\" " .. x .. " " .. y .. " 10 30") 			parse("effect \"smoke\" " .. x .. " " .. y .. " 10 30") 		end end
1
2
3
4
5
6
2
3
4
5
6
addhook("say","slee") function slee(id, txt) if(txt=="!sleep") or (txt=="!afk") then --afk xD parse("flashplayer "..id.." 1000") 		end end