Jump to content
  • 0

platinum room pleas


anginputih

Question


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  81
  • Reputation:   1
  • Joined:  01/06/12
  • Last Seen:  

please make it my script

kill monsters to get a platinum coin item code 677

a place to kill him in a room and enter room must pay 1000000

PLEASSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS

Link to comment
Share on other sites

3 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:  

<header> {
   mes "It will cost 1 million Zeny to enter.";
   if (Zeny < 1000000) close;
   if(select("Enter:Cancel")==2) close;
   set Zeny, Zeny-1000000;
   warp .map$,0,0;
   close;
OnInit:
   set .map$, "poring_w01";
   set .monster, 1002;
   set .amount, 50;
   monster .map$,0,0,strmobinfo(1,.monster),.monster,.amount,strnpcinfo(1)+"::OnKilled";
   end;
OnKilled:
   getitem 677,1;
   sleep <ms>;    // respawn time
   monster .map$,0,0,strmobinfo(1,.monster),.monster,1,strnpcinfo(1)+"::OnKilled";
   end;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  81
  • Reputation:   1
  • Joined:  01/06/12
  • Last Seen:  

<header> {
mes "It will cost 1 million Zeny to enter.";
if (Zeny < 1000000) close;
if(select("Enter:Cancel")==2) close;
set Zeny, Zeny-1000000;
warp .map$,0,0;
close;
OnInit:
set .map$, "poring_w01";
set .monster, 1002;
set .amount, 50;
monster .map$,0,0,strmobinfo(1,.monster),.monster,.amount,strnpcinfo(1)+"::OnKilled";
end;
OnKilled:
getitem 677,1;
sleep <ms>;	// respawn time
monster .map$,0,0,strmobinfo(1,.monster),.monster,1,strnpcinfo(1)+"::OnKilled";
end;
}

npc does not exist

Link to comment
Share on other sites


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

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...