Jump to content
  • 0

can i request npc warp?


mythology

Question


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  19
  • Reputation:   0
  • Joined:  12/18/12
  • Last Seen:  

hello,

can i request npc warp

which can warp on thana_boss,and requirement will be event coupon(30004)

Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

/bo Simple NPC

prontera,150,155,5	script	hyuikol	456,{
//-- ID coupon
.@ID = 30004;
//-

mes "^770000~~ Thana Warper ~~^000000";
mes "I can warp you inside Thanatos Tower !";
mes "Shall we go ?";
next;

if( select( "Yes:No" ) -1 ) {
//-- Leave
	mes "^770000~~ Thana Warper ~~^000000";
	mes "Maybe another day ?";
	close;
}

//-- Check inventory
if( countitem( .@ID ) < 1 ) {
	mes "^770000~~ Thana Warper ~~^000000";
	mes "Sorry a ^CC00CC"+getitemname( .@ID )+"^000000 is required for the process.";
	close;
}
close2;
message strcharinfo(0),"Here we go ! Get ready...";
delitem .@ID, 1;
//-- 2 seconds delay before warp
sleep2 2000;
warp "thana_boss",0,0;
end;
}

Edited by Capuche
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...