Jump to content

Flaid

Members
  • Posts

    398
  • Joined

  • Last visited

  • Days Won

    2

Community Answers

  1. Flaid's post in Wedding NPC was marked as the answer   
    Here you go, credits to whoever made the orginal script, I just modified it...
    http://upaste.me/raw/48b1421eccba92d
  2. Flaid's post in R> Ygg Berry / Seed / Box Of Thunder Trader NPC was marked as the answer   
    Try this

    prontera.gat,xxx,xxx,4 script Trader 666,{ set $@npcname_mpq$, "^4000C0[Trader]^000000"; mes $@npcname_mpq$; mes "Give me 100 Yggdrasil or 100 Box of Thunder product and I'll put them in 1 Box. Which one do you want to trade?"; next; menu "Yggdrasil Berry",L_Berry,"Yggdrasil Seed",L_Seed,"Box of Thunder",L_BOT,"Cancel",L_Exit; L_Berry: mes $@npcname_mpq$; mes "How many boxes do you want?"; input @berry; if(countitem(607) < (100*@berry)) goto LNotEnough; delitem 607,(100*@berry); mes "You really have that many Berrys? Okay, let's trade!"; getitem YGGBERRYBOXIDHEREIDKTHEID,(1*@berry); mes "Thank you sweety. Dont ygg too much!"; close; L_Seed: mes $@npcname_mpq$; mes "How many boxes do you want?"; input @seed; if(countitem(608) < (100*@seed)) goto LNotEnough; delitem 608,(100*@seed); mes "You really have that many Seeds? Okay, let's trade!"; getitem YGGSEEDBOXIDHEREIDKTHEID,(1*@seed); mes "Thank you sweety. Dont ygg too much!"; close; L_BOT: mes $@npcname_mpq$; mes "How many boxes do you want?"; input @bot; if(countitem(12028) < (100*@bot)) goto LNotEnough; delitem 12028,(100*@bot); mes "You really have that many Boxes of Thunder? Okay, let's trade!"; getitem BOXOFTHUNDERIDGOESHERE,(1*@bot); mes "Thank you sweety. Dont abuse it too much!"; close; LNotEnough: mes "You dont have the required items...?"; mes "Come back when you are actually ready. Now gtfo!"; close; L_Exit: close; }
  3. Flaid's post in Automated Events was marked as the answer   
    It all is explained really good on the wiki. Click -HERE-
  4. Flaid's post in Job Changer w/o 3rd was marked as the answer   
    Here's a jobmaster without third classes.
    http://pastebin.com/jQxS3uC5
  5. Flaid's post in request summon mvp was marked as the answer   
    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; }
×
×
  • Create New...