Jump to content
  • 0
Sign in to follow this  
prism

Soul Linker Spirit on self at level 6

Question

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

2 answers to this question

Recommended Posts

  • 0

...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;}

Share this post


Link to post
Share on other sites
  • 0

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 by prism

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.