Jump to content
megone

Soul Linker Buff

Recommended Posts

 

prontera,164,168,5    script   Dodong Magnum    742,{

    percentheal 100,100;

    skilleffect 34,0; sc_start SC_BLESSING,3600000,10;

    skilleffect 29,0; sc_start SC_INCREASEAGI,3600000,10;

    skilleffect 74,0; sc_start SC_MAGNIFICAT,3600000,5;

    skilleffect 33,0; sc_start SC_ANGELUS,3600000,10;

 

   if ( Class <= Job_Knight || Class <= Job_Lord_Knight){

            skilleffect 452,0; sc_start SC_KNIGHT,3600000,5;    

        }

}

 

pa fix po ng soul linker buff ayaw gumana.

 

Untitled.jpg

 

after that wala na hang na sya

Link to comment
Share on other sites

Don't use sc_knight, use sc_spirit instead. 

by the way, sc_spirit works for every job class.

You need not add an if statement to do that if you aim

to give every job a soul link buff.

And I noticed something, try not to use "<=" if you're pertaining to a specific job class, use "==" instead.

:)

 

here's the full code.

 
prontera,164,168,5 script Dodong Magnum 742,{


    percentheal 100,100;
    skilleffect 34,0; sc_start SC_BLESSING,3600000,10;
    skilleffect 29,0; sc_start SC_INCREASEAGI,3600000,10;
    skilleffect 74,0; sc_start SC_MAGNIFICAT,3600000,5;
    skilleffect 33,0; sc_start SC_ANGELUS,3600000,10;


   if ( Class == Job_Knight || Class == Job_Lord_Knight){ // you can take this off to allow all job soul linking
            skilleffect 452,0; sc_start SC_SPIRIT,3600000,5;    
        }
}

screeny:

 

post-7005-0-29721400-1440863875_thumb.jpg

Edited by jezznar
  • Upvote 1
Link to comment
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
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.



×
×
  • Create New...

Important Information

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