about hidden npc issue

dhaisuke

New member
Messages
99
Points
0
Hi Guys,

need assistance,

this is regarding the issue  I can't walk over that cell where a hidden npc was located.

Thank in advance

 
I think it goes the same for any npc, even FAKE_NPC. The only time you can walk over it is when it is disabled (maybe disablenpc())

 
bump for this..

here the sample of script.. what is the other solution how can i walk to that NPC

Code:
//Safety Wall npcs
06guild_01,68,54,0	script	SafetyWall#1	139,{
end;

OnActivation:
specialeffect 316;
if($@ArrayCounter==$@SW){
	donpcevent "MC Geezer::OnRun";
	end;
}
if($@ArrayCounter<$@SW){
	donpcevent "MC Geezer::OnNPCSetup";
	end;
}
}

06guild_01,68,51,0	duplicate(SafetyWall#1)	SafetyWall#2	139
06guild_01,68,48,0	duplicate(SafetyWall#1)	SafetyWall#3	139
06guild_01,68,45,0	duplicate(SafetyWall#1)	SafetyWall#4	139
06guild_01,66,54,0	duplicate(SafetyWall#1)	SafetyWall#5	139
06guild_01,66,45,0	duplicate(SafetyWall#1)	SafetyWall#6	139
06guild_01,64,64,0	duplicate(SafetyWall#1)	SafetyWall#7	139
 
Back
Top