prism 2 Posted August 31, 2014 Can someone make me a source script that allows a player to use Soul Linker Spirit on themselves if the skill level is level 6? I'm making a custom item that will give level 6 of the skill and want to know if this is possible. Quote Share this post Link to post Share on other sites
0 AnnieRuru 957 Posted August 31, 2014 ...allows a player to use Soul Linker Spirit on themselves ...I'm making a custom item /*update item_db_re set script = 'doevent "item_soullink::OnSoulLink";' where id = 501;*/- script item_soullink -1,{OnSoulLink: if ( .@spirit = .spirit[BaseJob] ); else if ( Upper & 1 && BaseLevel < 70 ) .@spirit = 494; else end; sc_start4 SC_SOULLINK, -1, 1, .@spirit,0,0; skilleffect .@spirit, 1; end;OnInit: .spirit[Job_Alchemist] = 445; .spirit[Job_Monk] = 447; .spirit[Job_Star_Gladiator] = 448; .spirit[Job_Sage] = 449; .spirit[Job_Crusader] = 450; .spirit[Job_SuperNovice] = 451; .spirit[Job_Knight] = 452; .spirit[Job_Wizard] = 453; .spirit[Job_Priest] = 454; .spirit[Job_Bard] = .spirit[Job_Dancer] = 455; .spirit[Job_Rogue] = 456; .spirit[Job_Assassin] = 457; .spirit[Job_Blacksmith] = 458; .spirit[Job_Hunter] = 460; .spirit[Job_Soul_Linker] = 461; end;} Quote Share this post Link to post Share on other sites
0 prism 2 Posted August 31, 2014 (edited) Thanks for the fast response. I was unclear on what I wanted though. By Soul Linker Spirit I meant the skill that Soul Linkers cast on another Soul Linker. I have a custom item(accessory) that when equipped allows you to use level 6 of the skill. I want Soul Linkers to be able to link themselves if they are using Soul Linker Spirit(skillid 461) level 6. Normally they can't use the skill on themselves. Edited August 31, 2014 by prism Quote Share this post Link to post Share on other sites
Can someone make me a source script that allows a player to use Soul Linker Spirit on themselves if the skill level is level 6? I'm making a custom item that will give level 6 of the skill and want to know if this is possible.
Share this post
Link to post
Share on other sites