Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

NPC, World ID

Elite Diviner
Joined
Nov 13, 2015
Messages
463
Reaction score
19
what is the world id on extra_obj for warp? I want to add NPC on warp center. thanks
 
Elite Diviner
Joined
Nov 13, 2015
Messages
463
Reaction score
19
I did add new line for 30 but when I enter, it auto closed.

<extra_object world_id="30" > <extra_dungeon dungeon_id="-1" >
<extra_stuff ID="0" filename="\NPC\DrakanScout_Eresh.ebm" min="-170.873,-25.3112,-244.727" max="215.379,650,172.775" >
<extra_entity type="1" pos="1340,0,2410" rotate="0,0,0" scale="1,1,1" disable_cell_radius="1" stuff_id="18" name="" npc_id="1" npc_tag="0" npc_type="1" />
</extra_stuff>
</extra_dungeon>
</extra_object>
 
Upvote 0
Elite Diviner
Joined
Nov 13, 2015
Messages
463
Reaction score
19
still have problem adding NPC on warp center, do I need to add new line with world id 30 like mentioned below? Because I can't find world id 30 on my extra_obj id forces me to close

<extra_object world_id="30" > <extra_dungeon dungeon_id="-1" >
<extra_stuff ID="0" filename="object\AION\RobotAM_58.ebm" min="-170.873,-25.3112,-244.727" max="215.379,650,172.775" >


<extra_entity type="1" pos="1000,0,1500" rotate="0,275,0" scale="1,1,1" disable_cell_radius="1" stuff_id="18" name="extra_npc_0136" npc_id="94" npc_tag="0" npc_type="1" />
</extra_stuff>
</extra_dungeon>
</extra_object>
 
Upvote 0
Banned
Banned
Joined
Aug 2, 2011
Messages
1,427
Reaction score
979
KO in 40 sec

Code:
		<extra_object	world_id="30"	>
			<extra_dungeon	dungeon_id="-1"	>
				<extra_stuff	ID="0"	filename="object\AION\RobotAM_58.ebm"	min="-170.873,-25.3112,-244.727"	max="215.379,650,172.775"	>
					<extra_entity	type="1"	pos="1000,0,1500"	rotate="0,0,0"	scale="1,1,1"	disable_cell_radius="1"	stuff_id="0"	name="extra_npc_0068"	npc_id="70"	npc_tag="0"	npc_type="1"	/>
				</extra_stuff>
			</extra_dungeon>
		</extra_object>
 
Upvote 0
Back
Top