1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
elseif command =='bust' then
			local bust = words:find(' ',4)
			local target = tonumber(words:sub(4,s))
			if target then
				if player(target,'exists') then
					local jail = bust and tonumber(words:sub(bust+1,words:find(' ',bust+1))) or nil
					if jail then
				 parse('setpos '..target..' '..jail")
				 PLAYERS[target].Spawn = {'..jail}
						return 1
					end
				end
			end
			msg2(id,'Let Bust him now: "!bust <targetid> <pixel cooirdonates>"')
			return 1