I want to know :
+How to change map("xsize") , map("ysize") to orther value !
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
for x = 20, function EntityList() 	for x = 1, map("xsize") do 		for y = 1, map("ysize") do 			if entity(x,y,"exists") then 				table.insert(EntityTable,{x = (x*32)+16,y = (y*32)+16}) 			end 		end 	end end EntityList()
i had local x2,y2
1
2
2
x2 = my value "x" in map 	 y2 = my value "y" in map
v[1][1],v[2][1] in config ! like tibia lua
1
if (x2 >= v[1][1] and x2 <= v[2][1] and y2 >= v[1][2] and y2 <= v[2][2]) then