Petey Pablo 0 Posted September 5, 2016 Anyone can help to make a soul linker npc with zeny cost. Thank you! Quote Share this post Link to post Share on other sites
0 bWolfie 138 Posted September 5, 2016 (edited) Not sure how linking works, but hoping this is good enough: http://pastebin.com/uX9uigAu //===== Hercules Script ====================================== //== Thirds Freebies ========================================= //===== By: ================================================== //== True Zeal =============================================== //===== Description: ========================================= //== Links for Zeny //============================================================ prontera,150,150,3 script Link 4 Zeny 4_F_ELEPHANT,{ // Set name of npc to that of it's NPC name (Link 4 Zeny) .@name$ = "[" + strcharinfo(1) + "]"; // Sets price in zeny .price = 100000; // Sets effect sprite .effect = 503; mes .@name$; mes "Would you like to be linked? Costs " + .price + "z.;"; next; switch(select("Yes:No")){ case 1: if (Zeny >= .price) { Zeny -= .price; skilleffect .effect,0; sc_start SC_SOULLINK,350000,5; close; } else { mes .@name$; mes "You don't have enough zeny!"; close; } break; case 2: close; break; } } Edited September 5, 2016 by True Zeal Quote Share this post Link to post Share on other sites
0 Petey Pablo 0 Posted September 6, 2016 Not sure how linking works, but hoping this is good enough: http://pastebin.com/uX9uigAu //===== Hercules Script ====================================== //== Thirds Freebies ========================================= //===== By: ================================================== //== True Zeal =============================================== //===== Description: ========================================= //== Links for Zeny //============================================================ prontera,150,150,3 script Link 4 Zeny 4_F_ELEPHANT,{ // Set name of npc to that of it's NPC name (Link 4 Zeny) .@name$ = "[" + strcharinfo(1) + "]"; // Sets price in zeny .price = 100000; // Sets effect sprite .effect = 503; mes .@name$; mes "Would you like to be linked? Costs " + .price + "z.;"; next; switch(select("Yes:No")){ case 1: if (Zeny >= .price) { Zeny -= .price; skilleffect .effect,0; sc_start SC_SOULLINK,350000,5; close; } else { mes .@name$; mes "You don't have enough zeny!"; close; } break; case 2: close; break; } } How to add correct soul link in every job? Thank bro! Quote Share this post Link to post Share on other sites
0 yeeshin 0 Posted September 25, 2016 Not sure how linking works, but hoping this is good enough: http://pastebin.com/uX9uigAu //===== Hercules Script ====================================== //== Thirds Freebies ========================================= //===== By: ================================================== //== True Zeal =============================================== //===== Description: ========================================= //== Links for Zeny //============================================================ prontera,150,150,3 script Link 4 Zeny 4_F_ELEPHANT,{ // Set name of npc to that of it's NPC name (Link 4 Zeny) .@name$ = "[" + strcharinfo(1) + "]"; // Sets price in zeny .price = 100000; // Sets effect sprite .effect = 503; mes .@name$; mes "Would you like to be linked? Costs " + .price + "z.;"; next; switch(select("Yes:No")){ case 1: if (Zeny >= .price) { Zeny -= .price; skilleffect .effect,0; sc_start SC_SOULLINK,350000,5; close; } else { mes .@name$; mes "You don't have enough zeny!"; close; } break; case 2: close; break; } } How to add correct soul link in every job? Thank bro! You will have to add the "if (Class == [insert_Soul_Linked_Class_Here])" For every Job and change the Skill ID to match the Job. Quote Share this post Link to post Share on other sites
Anyone can help to make a soul linker npc with zeny cost. Thank you!
Share this post
Link to post
Share on other sites