Jump to content
  • 0

lhz_dun03-04 mvp can't use Convex Mirror to find


adseej

Question


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   0
  • Joined:  07/06/12
  • Last Seen:  

I can't use Convex Mirror to find this mvp how i can fix?

lhz_dun03,0,0,0	script	mvp_lhz_dun03	-1,{
OnTimer6000000: // delay1 = 6000000 ms (100 min)
stopnpctimer;
sleep rand(0,30)*60000; // 0 to 30 minutes
OnInit:
// Select Coordinates to summon a random MVP on
switch(rand(1,6)) {
	case 1:  set .@x,140;  set .@y,232;  break;
	case 2:  set .@x,75;   set .@y,138;  break;
	case 3:  set .@x,140;  set .@y,87;   break;
	case 4:  set .@x,205;  set .@y,140;  break;
	case 5:  set .@x,123;  set .@y,137;  break;
	case 6:  set .@x,175;  set .@y,137;  break;
}
set .@mob,rand(1646,1651);
monster "lhz_dun03",.@x,.@y,strmobinfo(1,.@mob),.@mob,1,strnpcinfo(3)+"::OnMyMVPDead";

// Select Coordinates to summon a random 99 on
switch(rand(1,6)) {
	case 1:  set .@x2,183;  set .@y2,97;   break;
	case 2:  set .@x2,97;   set .@y2,96;   break;
	case 3:  set .@x2,47;   set .@y2,139;  break;
	case 4:  set .@x2,231;  set .@y2,140;  break;
	case 5:  set .@x2,139;  set .@y2,211;  break;
	case 6:  set .@x2,139;  set .@y2,259;  break;
}
set .@mob2,rand(1640,1645);
monster "lhz_dun03",.@x2,.@y2,strmobinfo(1,.@mob2),.@mob2,1,strnpcinfo(3)+"::OnMy99Dead";
end;

OnMyMVPDead:
killmonster "lhz_dun03",strnpcinfo(3)+"::OnMy99Dead";
initnpctimer;
OnMy99Dead:
end;
}

Edited by Euphy
Codeboxed
Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

If you look in your /mobs/ folder, you'll see that the only monsters you can find via Convex Mirror are those spawned with the "boss_monster" command. The Bio MVPs are spawned via script instead, because they are randomized; there isn't a script equivalent to "boss_monster", so you can't use Convex Mirror.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   0
  • Joined:  07/06/12
  • Last Seen:  

I know but not way to fix script for use boss_monster command in random spawned script?

Edited by adseej
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...