Code to monsters is:
And how set spawn? In x is 0 and in y is 0 , where create spawn monsters at a given location? Thanks for help
Scripts
Tibia spawn monsters
Tibia spawn monsters
1

local SPAWNS = {
	FULLMAP = {{0, 0}, {150, 150}},
	BOTTOMHALF = {{0, 100}, {150, 150}},
	ONIXCAVE = {{165, 30}, {184, 48}},
	YOURSHIT = {{x,y},{x,y}}, -- Change name and the pos
},
CONFIG.MONSTERS = {
name = 'Djin', health = 180, image = 'gfx/weiwen/pokemon/e3.png', scalex = 1.0, scaley = 1.0,
atk = 2.2, def = 1.0, spd = 9, atkspd = 7, x = 0, y = 0, ang = 0, imgang = 0, runat = 0,
spawnchance = {['rpg_mapb'] = {30}},
spawn = {
			['rpg_mapb'] = {SPAWNS.YOURSHIT}
exp = 19, money = 110, loot = {{chance = 50, id = 104}},
1
