Jump to content
  • 0

request summon mvp


anginputih

Question


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

What can any body help me make a script

this player can call or mvp summon zeny cost 1000000000

all models mvp

call through the NPC

with a 30 - minute time limit

Edited by anginputih
Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   140
  • Joined:  01/04/12
  • Last Seen:  

I did not test this but this should work.

prontera.gat,150,150,1    script    MvP Summoner    666,{
   mes "[MvP Summoner]";
   mes "What do you want?";
   next;
   mes "[MvP Summoner]";
   mes "Have you come here to summon a^FF3300 MvP^000000?";
   next;
   menu "Yeah, Sure.",-,"No",M_EXIT;

   mes "[MvP Summoner]";
   mes "This will cost you 1.000.000.000 zeny. Are you sure?";
   next;
   menu "Sure.",M_SUMMON,"Nah.",-;

M_SUMMON:
   if(TimeSpawned > gettimetick(2)) {
   mes "[MvP Summoner]";
   mes "I am sorry, but I am not a robot.";
   mes "Please wait 30 minutes after your last MvP spawn.";
   close;
   }
   if (Zeny < 1000000000) goto L_NOZENY;
   set Zeny, Zeny - 1000000000;
   monster "this",-1,-1,"--ja--",-3,1,"";
   set TimeSpawned, gettimetick(2) + 1800;
   dispbottom "MvP Summoner: Please give me at least a day to recover.";
   close;

L_NOZENY:
   mes "[MvP Summoner]";
   mes "You do not have enough zeny to spawn a MvP";
   mes "Get more and come back.";
   close;

M_EXIT:
   mes "[MvP Summoner]";
   mes "Then leave me alone... I am waiting for someone who wants my services.";
   close;
}

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • 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...