Kido Posted September 7, 2013 Group: Members Topic Count: 127 Topics Per Day: 0.03 Content Count: 1445 Reputation: 164 Joined: 08/17/13 Last Seen: July 11, 2019 Share Posted September 7, 2013 Hello, im having problems with a custom item i want to make it when equiped by a soul linker, it will auto cast its soul linker spirit on the player at lvl 5 this is my script 27159,Sea_Valkyrie_Helm,Sea_Valkyrie_Helm,5,,,0,,0,,1,0xFFFFFFFF,7,2,256,,1,1,1559,{ if(Class==Job_Soul_Linker) { bonus bMatkRate,15; } },{ sc_start4 SL_SOULLINKER,60000,10,0,0,1; },{ sc_end SL_SOULLINKER; } Also i need a similar to make auto-cast a soul link to the player's job when equiped, help please i just can not figure it out ): Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted September 7, 2013 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted September 7, 2013 (edited) http://www.eathena.ws/board/index.php?s=&showtopic=239234&view=findpost&p=1304857 use Annie's script function script soullink { 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; } 27159,............{}{callfunc "soullink";}{} Edited September 7, 2013 by QQfoolsorellina 1 Quote Link to comment Share on other sites More sharing options...
Kido Posted September 7, 2013 Group: Members Topic Count: 127 Topics Per Day: 0.03 Content Count: 1445 Reputation: 164 Joined: 08/17/13 Last Seen: July 11, 2019 Author Share Posted September 7, 2013 (edited) is not working ): 27159,Sea_Valkyrie_Helm,Sea_Valkyrie_Helm,5,,,0,,0,,1,0xFFFFFFFF,7,2,256,,1,1,1559,{ if(Class==Job_Soul_Linker) { bonus bMatkRate,15; } },{callfunc "soullink";},{ } i also tryied 27159,Sea_Valkyrie_Helm,Sea_Valkyrie_Helm,5,,,0,,0,,1,0xFFFFFFFF,7,2,256,,1,1,1559,{ if(Class==Job_Soul_Linker) { bonus bMatkRate,15; } },{ callfunc "soullink"; },{ } edit: o it works now, but it gives link to every char, how can i make it only for soul linker? Edited September 8, 2013 by Patskie Quote Link to comment Share on other sites More sharing options...
Capuche Posted September 7, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted September 7, 2013 27159,...,{ if(Class==Job_Soul_Linker) { bonus bMatkRate,15; } },{ if(Class==Job_Soul_Linker) { sc_start4 sc_spirit, 360000, 5, 461,0,0; skilleffect 461, 5; } },{ } Quote Link to comment Share on other sites More sharing options...
Kido Posted September 8, 2013 Group: Members Topic Count: 127 Topics Per Day: 0.03 Content Count: 1445 Reputation: 164 Joined: 08/17/13 Last Seen: July 11, 2019 Author Share Posted September 8, 2013 (edited) 27159,...,{ if(Class==Job_Soul_Linker) { bonus bMatkRate,15; } },{ if(Class==Job_Soul_Linker) { sc_start4 sc_spirit, 360000, 5, 461,0,0; skilleffect 461, 5; } },{ } it says and is not working ): that's the code 27159,Sea_Valkyrie_Helm,Sea_Valkyrie_Helm,5,,,0,,0,,1,0xFFFFFFFF,7,2,256,,1,1,1559,{ if(Class==Job_Soul_Linker) { bonus bMatkRate,15; } },{ if(Class==Job_Soul_Linker) { sc_start4 sc_spirit, 360000, 5, 461,0,0; skilleffect 461, 5; } },{ } ): Edited September 8, 2013 by Kido Quote Link to comment Share on other sites More sharing options...
Capuche Posted September 8, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted September 8, 2013 This message appear because of http://rathena.org/board/topic/86816-renewal-item-db-class-update-commit-5f12351/ otherwise I tested it, a soul link can wear the headgear Quote Link to comment Share on other sites More sharing options...
Kido Posted September 9, 2013 Group: Members Topic Count: 127 Topics Per Day: 0.03 Content Count: 1445 Reputation: 164 Joined: 08/17/13 Last Seen: July 11, 2019 Author Share Posted September 9, 2013 Thanks, i will change that then, thank you again! will edit if error/worked good! Quote Link to comment Share on other sites More sharing options...
Question
Kido
Hello, im having problems with a custom item
i want to make it when equiped by a soul linker, it will auto cast its soul linker spirit on the player at lvl 5
this is my script
Also i need a similar to make auto-cast a soul link to the player's job when equiped, help please i just can not figure it out ):
Link to comment
Share on other sites
6 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.