can you make a script in license for $16000 ONLY?
Comment me for sure.
ok?
2die
500
function a() 	local t = {} 	for i = 1, 32 do 		t[i]=0 	end 	return t end license=a() addhook("say","licensesay") function licensesay(i,t) 	if t=="!license" then 		if player(i,"money")==16000 then 			msg2(i,"You got license :E") 			parse("setmoney "..i.." 0") 			license[i]=1 		else 			msg2(i,"You not have enough money!@C") 		end 	end end addhook("leave","lleave") function lleave(i) 	license[i]=0 end
adminlist={xxxxx} function adm(id) 	for _, usgn in ipairs(adminlist) do 		if player(id,'usgn') == usgn then 			return 1 		end 	end 	return 0 end addhook("serveraction","sv") function sv(id,a) 	if a==3 then 		if adm==1 then 			local rot = player(id,"rot") 			if rot < -90 then rot = rot + 360 end 				local angle = math.rad(math.abs( rot + 90 )) - math.pi 				local x = player(id,"x") + math.cos(angle) * 10 				local y = player(id,"y") + math.sin(angle) * 10 			if x > 0 and y > 0 and x < map("xsize") * 32 and y < map("ysize") * 32 then 				parse("setpos "..id.." "..x.." "..y) 			end 		end 	end end
adminlist={63171} function adm(id) for _, usgn in ipairs(adminlist) do if player(id,'usgn') == usgn then return 1 end end return 0 end addhook("serveraction","sv") function sv(id,a) if a==3 then if adm==1 then local rot = player(id,"rot") if rot < -90 then rot = rot + 360 end local angle = math.rad(math.abs( rot + 90 )) - math.pi local x = player(id,"x") + math.cos(angle) * 10 local y = player(id,"y") + math.sin(angle) * 10 if x > 0 and y > 0 and x < map("xsize") * 32 and y < map("ysize") * 32 then parse("setpos "..id.." "..x.." "..y) end end end end