Tenta assim:
troca
local tasks = {[1] = {name = "Blastoise", qnt = 20, npc = "Junko"},[2] = {name = "Electabuzz", qnt = 15, npc = "Junko"},[3] = {name = "Venusaur", qnt = 18, npc = "Junko"},[4] = {name = "Charizard", qnt = 27, npc = "Junko"},}
por
local tasks = {}if getPlayerLevel (cid) < 30 then tasks = { [1] = {name = "Weedle", qnt = 20}, [2] = {name = "Rattata", qnt = 15}, [3] = {name = "Charmander", qnt = 18}, [4] = {name = "Poliwag", qnt = 27}, }}elseif getPlayerLevel (cid) >= 30 and getPlayerLevel (cid) < 60 then tasks = { [1] = {name = "Ivysaur", qnt = 20}, [2] = {name = "Poliwhirl", qnt = 15}, [3] = {name = "Seadra", qnt = 18}, [4] = {name = "Weepinbell", qnt = 27}, }elseif getPlayerLevel (cid) >= 60 and getPlayerLevel (cid) < 100 then tasks = { [1] = {name = "Marowak", qnt = 20}, [2] = {name = "Machoke", qnt = 15}, [3] = {name = "Haunter", qnt = 18}, [4] = {name = "Hypno", qnt = 27}, }elseif getPlayerLevel (cid) >= 100 then tasks = { [1] = {name = "Blastoise", qnt = 20}, [2] = {name = "Electabuzz", qnt = 15}, [3] = {name = "Venusaur", qnt = 18}, [4] = {name = "Charizard", qnt = 27}, }end