Jump to content

map index error


Recommended Posts

Hello 

 

when I try to teleport from temple of ochao to enchanted forest  via portal that drops from (Entai_Guardian) I can't  

 

I added the map to the map index in the server and in the client and in all channels  cores and setting.lua but that didn't helped me 

here is the quest that I used to  teleport




 

quest temple_of_the_ochao begin
    state start begin
		when login with pc.get_map_index() == 209 begin
			temple_ochao.initialize()
		end
		
		when 6311.kill with pc.get_level() >= 95 begin
			local drop = {
							{["vnum"] = 2145, ["count"] = 1, ["chance"] = 60,},
							{["vnum"] = 11295, ["count"] = 1, ["chance"] = 55,},
							{["vnum"] = 11495, ["count"] = 1, ["chance"] = 55,},
							{["vnum"] = 11695, ["count"] = 1, ["chance"] = 55,},
							{["vnum"] = 11895, ["count"] = 1, ["chance"] = 55,},
							{["vnum"] = 21075, ["count"] = 1, ["chance"] = 55,},
							{["vnum"] = 70043, ["count"] = 1, ["chance"] = 45,},
							{["vnum"] = 30609, ["count"] = 1, ["chance"] = 15,},
							{["vnum"] = 30612, ["count"] = 1, ["chance"] = 15,},
							{["vnum"] = 30523, ["count"] = 1, ["chance"] = 40,},
			}
			
			for i, info in ipairs(drop) do
				local generate = number(1, 100)
				if generate <= info.chance then
					game.drop_item_with_ownership(info.vnum, info.count, 300)
				end
			end
		end
		
		when 20408.chat."Enter in the Temple of Ochao" with pc.get_level() >= 95 begin
			say_title(mob_name(20408))
			say("")
			say("Do you want to move directly to the Temple of the")
			say("Ochao?")
			local answer = select("Yes", "No")
			if answer == 1 then
				pc.warp(853700, 1416400)
			end
		end
		

		when 20415.chat."Travel to the Enchanted Forest" with pc.get_level() >= 95 begin
			say_title(mob_name(20408))
			say("")
			say("Do you wish to travel to the Enchanted Forest of")
			say("Dawn?")
			local answer = select("Yes", "No")
			if answer == 1 then
				pc.setf("enchanted_forest", "limit_activity", 0)
				pc.warp(816700, 150500)
			end
		end
	end
end



here is the syserr  

 

SYSERR: Feb 21 05:35:32 :: SpawnMob: SpawnMob: no mob data for vnum 6400
SYSERR: Feb 21 05:35:32 :: Spawn: <Temple Ochao> Spawn: can't spawn 6400 at X [883600], Y [1427500], Z [0].
SYSERR: Feb 21 05:35:51 :: WarpSet: cannot find map location index 0 x 816700 y 150500 name xLoGaN



any help is appreciated 

best regards 
 

 

Link to comment
Share on other sites

  • Replies 5
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

19 hours ago, ReFresh said:

@xLoGaN Did you added map to atlasinfo.txt? You can find it in roots or locale folders.

@ReFresh I added the map to atlasinfo.txt in  locale folder

 

I fixed  

SYSERR: Feb 21 05:35:32 :: Spawn: <Temple Ochao> Spawn: can't spawn 6400 at X [883600], Y [1427500], Z [0].


SYSERR: Feb 21 05:35:32 :: SpawnMob: SpawnMob: no mob data for vnum 6400
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.