viewing paste Unknown #6754 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
//===== eAthena Script =======================================
//= Alche Buffer
//===== By: ==================================================
//= Masao
//===== Current Version: =====================================
//= 1.0
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//= Gives Soul Link to Alche Class.
//===== Additional Comments: =================================
//= Version 1.0 if there are any Bugs please let me know.
//============================================================
maintown,203,273,4  script  Alchemisten Buffer  733,{
 
    set .@n$,"[Alchemisten Buffer]";
    set .@time_buffs,60000; // milliseconds
 
switch (Class){
    case 18:
    case 4019:
    case 4041:
    case 4071:
    case 4078:
        percentheal 100,100;
        sc_start4 SC_SOULLINK,.@time_buffs,5,445,0,0;
        specialeffect2 503; // Soul Link Word
        emotion e_no1;
        npctalk "Heal and Buffs for potting, have fun^.^";
        dispbottom "The Buffs will last for around an Minute.";
        dispbottom "During thise time you can't move ;)";
        break;
    default:
        mes .@n$;
        mes "Sorry, but i can't do anything for you.";
        break;
    }
    close;
}
Viewed 710 times, submitted by Guest.