Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Is anyone here know how to make Buffer NPC??

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jan 13, 2007
Messages
34
Reaction score
0
can you tell me what kind of buff? or what skill and if its pay per buff
 
Newbie Spellweaver
Joined
Oct 7, 2007
Messages
83
Reaction score
0
hey funfair91..give me the script
 
Newbie Spellweaver
Joined
Oct 25, 2007
Messages
93
Reaction score
4
do you still need a buffer NPC??? i can make you one.....
 
Newbie Spellweaver
Joined
Oct 25, 2007
Messages
93
Reaction score
4
how do you like your Buff do?

1. is it for free or with fee?
2. with heal function?
3. one click instant buff or with dialogs?



Actually i have made my own heal&buffer BPC..... heal is free but buffing will cost some zeny....
 
Junior Spellweaver
Joined
Jun 24, 2007
Messages
136
Reaction score
1
I can make you a buffer but can you like give me credit or something? I made this one for my server and it's pretty easy to use. The buffer gives you two choices. One: Heal alone for free and Two: Heal + Buffs for 5k Zeny.

You can edit it to your liking like I said, a little credit please? ;)

Here you go:

Code:
//-------------------------------------------------------------
//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=========================================
//-------------------------------------------------------------
 
Newbie Spellweaver
Joined
Oct 7, 2007
Messages
83
Reaction score
0
Janice!when i put tht npc,it make my map crash!
 
Junior Spellweaver
Joined
Jun 24, 2007
Messages
136
Reaction score
1
What does it say?

Code:
prontera.gat,157,187,1[tab]script[tab]Loaded Scientist[tab]121,{

Edit those. USE TABS!!! NOT SPACES.

Maybe when you copied the code, the tabs were converted to spaces. Or just read the log and see what's the error. Works for me...
 
Junior Spellweaver
Joined
Oct 12, 2007
Messages
103
Reaction score
0
can i get this one too?..

thx.. don't worry i'll link you back.. i mean "credits"..
 
Junior Spellweaver
Joined
Jun 24, 2007
Messages
136
Reaction score
1
Sure no problem. ^^

And oh, tell me if you encounter any bug like the other guy did. It's working fine for me. It helps if you have basic knowledge on scripting though. So you can edit it and stuff.

But if you need more assistance, contact me on my MSN. janice@aeonlegacy.com
 
Junior Spellweaver
Joined
Oct 12, 2007
Messages
103
Reaction score
0
yeah, i have little, very little knowledge on scripting.. ~_^
 
Junior Spellweaver
Joined
Jun 24, 2007
Messages
136
Reaction score
1
Meh server k na? Wanna join mine? :p
 
Master Summoner
Loyal Member
Joined
Oct 10, 2006
Messages
591
Reaction score
0
This script added to sticky thread.
thanks you, good job.

-F.O.X
 
Junior Spellweaver
Joined
Jun 24, 2007
Messages
136
Reaction score
1
I love to help and thanks for stickying it F.O.X. that way, people can easily find it. ^^
 
Newbie Spellweaver
Joined
Apr 1, 2009
Messages
24
Reaction score
0
thanks i really need it so i wont use berries for healing..^_^ thnx..... more power to you!!!!
 
Status
Not open for further replies.
Back
Top