nagz06 Posted March 29, 2017 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 6 Reputation: 0 Joined: 03/29/17 Last Seen: April 14, 2017 Share Posted March 29, 2017 Hello! I'm just new here! I would like to request a script for custom scroll! 1. Full/Advance Adrenaline Rush Scroll 2. Soul Link Scroll (1 Scroll for all job types) thank you for your support! Quote Link to comment Share on other sites More sharing options...
1 Cyro Posted March 29, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted March 29, 2017 (edited) { skilleffect "SL_ALCHEMIST",0; sc_start4 SC_SPIRIT,350000,5,445,0,0; } you can use this item script and make usable items for skills whichever you want, if you want all soul links in one scroll you can make function for the item function script link { switch ( basejob ) { case Job_Alchemist: set .@spirit, 445; break; case Job_Monk: set .@spirit, 447; break; case Job_Star_Gladiator: set .@spirit, 448; break; case Job_Sage: set .@spirit, 449; break; case Job_Crusader: set .@spirit, 450; break; case Job_SuperNovice: set .@spirit, 451; break; case Job_Knight: set .@spirit, 452; break; case Job_Wizard: set .@spirit, 453; break; case Job_Priest: set .@spirit, 454; break; case Job_Bard: case Job_Dancer: set .@spirit, 455; break; case Job_Rogue: set .@spirit, 456; break; case Job_Assassin: set .@spirit, 457; break; case Job_Blacksmith: set .@spirit, 458; break; case Job_Hunter: set .@spirit, 460; break; case Job_Soul_Linker: set .@spirit, 461; break; default: if ( upper == 1 && baselevel < 70 ) set .@spirit, 494; } if ( .@spirit ) { sc_start4 sc_spirit, 360000, 5, .@spirit,0,0; skilleffect .@spirit, 5; } end; } {callfunc "link";} Edited March 29, 2017 by Cyro Quote Link to comment Share on other sites More sharing options...
0 nagz06 Posted March 30, 2017 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 6 Reputation: 0 Joined: 03/29/17 Last Seen: April 14, 2017 Author Share Posted March 30, 2017 Thanks, Ill try this, and will give you a feed back! Any script for Full/Advance Adrenaline Rush Scroll? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted March 30, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted March 30, 2017 Just fund the skill id and replace Quote Link to comment Share on other sites More sharing options...
Question
nagz06
Hello! I'm just new here! I would like to request a script for custom scroll!
1. Full/Advance Adrenaline Rush Scroll
2. Soul Link Scroll (1 Scroll for all job types)
thank you for your support!
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.