- Joined
- Oct 7, 2007
- Messages
- 83
- Reaction score
- 0
Plz help me..
//-------------------------------------------------------------
//Start of Loaded Scientist=======================================
//-------------------------------------------------------------
prontera.gat,157,187,1 script Loaded Scientist 121,{
mes "[Loaded Scientist]";
mes "Hello there!";
mes "I'm a scientist and I'm here to help those who are in need.";
mes " ";
mes "See, I've developed two sophisticated pills. A ^000088Blue^000000 pill and a ^ff0000Red^000000 pill.";
mes " ";
mes "The ^000088Blue^000000 pill helps you regain 100% of your HP/SP whilst the ^ff0000Red^000000 pill boosts your energy by giving you powerful buffs.";
mes " ";
mes "I'm willing to give you the ^000088Blue^000000 pill for free and I can give you the ^ff0000Red^000000 pill for a low price of 5000 Zeny. So, if you're interested, just pick one.";
mes " ";
next;
menu "^000088Blue^000000 pill please.",-,"^ff0000Red^000000 pill please.",Buffs,"Maybe next time.",CANCEL;
percentheal 100,100;
mes "[Loaded Scientist]";
mes "See, my pills really work! I'm such a genius!";
close;
Buffs:
if(Zeny < 5000) goto LNotEnough;
set Zeny,Zeny-5000;
percentheal 100,100;
skilleffect 29,0; sc_start SC_INCREASEAGI,500000,5;
skilleffect 33,0; sc_start SC_ANGELUS,500000,3;
skilleffect 361,0; sc_start SC_ASSUMPTIO,500000,3;
skilleffect 383,0; sc_start SC_WINDWALK,500000,3;
skilleffect 75,0; sc_start SC_GLORIA,500000,3;
skilleffect 74,0; sc_start SC_MAGNIFICAT,500000,3;
skilleffect 66,0; sc_start SC_IMPOSITIO,500000,3;
skilleffect 34,0; sc_start SC_BLESSING,500000,5;
mes "[Loaded Scientist]";
mes "See, my pills really work! I'm such a genius!";
close;
LNotEnough:
mes "[Loaded Scientist]";
mes "I'm sorry, but you don't have enough money for the ^ff0000Red^000000 pill.";
mes "Come back when you do have the money.";
close;
CANCEL:
mes "[Loaded Scientist]";
mes "Alright, just approach me when you've made up your mind.";
close;
}
//-------------------------------------------------------------
//End of Loaded Scientist=========================================
//-------------------------------------------------------------
prontera.gat,157,187,1[tab]script[tab]Loaded Scientist[tab]121,{