hello guys..can teach me or help me customize soul link script.i wan to the script for combining function..i want to make it on 1 npc...i dunt know how to set it rite...
Code:
//===== eAthena Script =======================================
//= Soul Link Npc [with warp door in Prontera Inn
//= near the PvP Narrator.]
//===== By: ==================================================
//= Van The Kid [Alternative Server Admisstrator]
//===== Current Version: =====================================
//= 3.111
//===== Compatible With: =====================================
//= eAthena 111.1+;
//===== Description: =========================================
//= Link Your Character For Long Lasting Than Real Linker!!
//= i mean Soul Linker Job...Just put anywhere you like it
//===== Additional Comments: =================================
//= No Yet[hehehe]
//============================================================
prontera,165,150,6 script Knight Linker 56,{
if(baseJob == 7) goto L_lk;
if(baseJob == 4008) goto L_lk;
npctalk "You not a Knight or Lord Knight!";
end;
L_lk:
skilleffect 452,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Lord..";
end;
if(baseJob == 9) goto L_hw;
if(baseJob == 4010) goto L_hw;
npctalk "You not a Wizard or High Wizard!";
end;
hw:
skilleffect 453,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Soccerer..";
end;
if(baseJob == 8) goto L_hp;
if(baseJob == 4009) goto L_hp;
npctalk "You not a Priest or High Priest!";
end;
L_hp:
skilleffect 454,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked &%@$#!..";
end;
if(baseJob == 10) goto L_ws;
if(baseJob == 4011) goto L_ws;
npctalk "You not a Blacksmith or Whitesmith!";
end;
L_ws:
skilleffect 458,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Smith..";
end;
if(baseJob == 12) goto L_ac;
if(baseJob == 4013) goto L_ac;
npctalk "You not a Assassin or The Cross One!";
end;
L_ac:
skilleffect 457,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Soul Slughter..";
end;
if(baseJob == 11) goto L_sn;
if(baseJob == 4012) goto L_sn;
npctalk "You not a Hunter or Sniper!";
end;
L_sn:
skilleffect 460,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Sharpshooter..";
end;
if(baseJob == 14) goto L_pd;
if(baseJob == 4015) goto L_pd;
npctalk "You not a Crusader or Paladin!";
end;
L_pd:
skilleffect 450,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Sir..";
end;
if(baseJob == 16) goto L_prof;
if(baseJob == 4017) goto L_prof;
npctalk "You not a Sage or Professor!";
end;
L_prof:
skilleffect 449,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Teacher..";
end;
if(baseJob == 15) goto L_cha;
if(baseJob == 4016) goto L_cha;
npctalk "You not a Monk or Champion!";
end;
L_cha:
skilleffect 447,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Warrior..";
end;
if(baseJob == 18) goto L_fma;
if(baseJob == 4019) goto L_fma;
npctalk "You not a Alchemist or Creator!";
end;
L_fma:
skilleffect 445,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Briliant One..";
end;
if(baseJob == 17) goto L_st;
if(baseJob == 4018) goto L_st;
npctalk "You not a Rogue or Stalker!";
end;
L_st:
skilleffect 456,1;
sc_start SC_SPIRIT,55599***1;
npctalk "I Have Linked You, Criminal..";
end;
if(baseJob == 19) goto L_cl;
if(baseJob == 4020) goto L_cl;
npctalk "You not a Bard or Clown!";
end;
L_cl:
skilleffect 455,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Artist..";
end;
if(baseJob == 20) goto L_gy;
if(baseJob == 4021) goto L_gy;
npctalk "You not a Dancer or Gypsy!";
end;
L_gy:
skilleffect 455,1;
sc_start SC_SPIRIT,55599***1;
npctalk "You Have been Linked My Entertainer";
end;
if(baseJob == 4047) goto L_tr;
if(baseJob == 4048) goto L_tr;
npctalk "You not a Star Gladiator!";
end;
L_tr:
skilleffect 448,1;
sc_start SC_SPIRIT,55599***1;
npctalk "I Have Linked You..Cosmos Warrior..";
end;
if(baseJob == 4049) goto L_sl;
npctalk "You not a Soul Linker!";
end;
L_sl:
skilleffect 461,1;
sc_start SC_SPIRIT,55599***1;
npctalk "I Have Linked You..The True Linker..";
end;
if(baseJob == 23) goto L_sn;
npctalk "You not a Super Novice!";
end;
L_sn:
skilleffect 451,1;
sc_start SC_SPIRIT,55599***1;
npctalk "I Have Linked You..Small Fighter";
end;
}