I would think if you can solve my problem so it depends on this error:
And code is
Spoiler
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
commands["!shake"] = { 						enabled = true, 						permission = 1, 						arguments = 1, 						syntax = "<id>", 						func = function(id,arguments) 						if isAdmin(id) and isMod(id) then 						local arg = tonumber(arguments[1]) 						if not arg then return msg2(id,""..string.char(169).."000250155[Server]: "..string.char(169).."255255255Invalid numeric value.") end 						if not player(arg,"exists") then return msg2(id,""..string.char(169).."000250155[Server]: "..string.char(169).."255255255Player with the specified "..arg.." does not exist.") end 						if player(arg,"bot") then return msg2(id,""..string.char(169).."000250155[Server]: "..string.char(169).."255255255You can't shake a bot") end 						if arg == id then return msg2(id,""..string.char(169).."000250155[Server]: "..string.char(169).."255255255You can not shake yourself.") end 						parse("shake "..arg.." 900") 						msg(""..string.char(169).."000250155[Server]: "..string.char(169).."255255255"..player(id,"name").." Used shake on "..player(arg,"name").."") 							else 					--Line error	if Rank[2] < Rank[1] then error return msg2(id,""..string.char(169).."000250155[Server]: "..string.char(169).."255255255You can't kick higher staff") 						end 					end 				end 			};
So,x5
1× editiert, zuletzt 21.02.18 20:03:29