//===== 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;
}