Jump to content
  • 0
Critica

How can i make this effect permanent?

Question

for ex.

,( skilleffect "SL_KAITE",0; ),(),()

how can i make the effect permanent? coz everytime i use warp or relog.. the effect is gone..

some says that i should use skill timer.. but im not sure how to do that.. can anyone help me pls? thank You.. =)

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

Check your setting in ../conf/battle/status.conf

// Will certain skill status-changes be removed on logout?
// This mimics official servers, where Extremity Fist's no SP regen,
// Strip Equipment, and some other buffs are removed when you logout. Setting is:
// 0 = remove nothing.
// 1 = remove negative buffs (stripping, EF)
// 2 = remove positive buffs (maximize power, steel body...)
// 3 = remove both negative and positive buffs.
debuff_on_logout: 3

Change it to 0 or 1 if you want positive buffs to stay when players logout.

Link to comment
Share on other sites

Oh... no.. i meant is the effect.. like the visual not the buff..

i need the skilleffect of Kaite to be permanent when equipping some items..

this ,( skilleffect "SL_KAITE",0; ),(),()

works when i eqp. the item, but when i use @warp the effect is gone.. is there a way to make it stay there and only be gone when the item is removed(uneqped.)

Link to comment
Share on other sites

Nooo He wants a permanent effect like the lvl99 aura. One that will not disappear when changing maps.

Which is not possible because the client refreshes every character upon entrance to a map. so even if you used it as 'while equipped, the effect would not appear to new people entering the map.

Link to comment
Share on other sites

i short cut his mean,

example: Kaite Clips. (we make clips has special effect)

description: who equipt kaite clips will get kaite effect. (no matter relog/warp the skill wont gone) if dispell or die just unquip and requip can get the effect back.

but kinda like god mode if this skill can't cancel xD!

Link to comment
Share on other sites

yea you just explain exactly what i wanted! !i except that dont need the skill effect (the main kaite) i only want the VISUAL effect of Kaite.. (the blurry white

is this possible?? i already tried itembonus like..misceffect, skilleffect.. and other stuff.. but still not going as i planned..

ya its kinda like the eddga card.. excpt that i want is the VISUAL effect of Kaite not the skill effect.. get it?? xD

in short, i need an itembonus that makes

KAITE > VISUAL EFFECT permanent when eqp. this!!

KAITE > SKILL EFFECT x not this..

Edited by critica
Link to comment
Share on other sites

set eqpid, getequipid(1) //<---- you need to change this according to the position where the item is located

if(eqpid  > -1){
initnpctimer;
end;}
else;
end;

OnTimer10000:
skilleffect 419,7;
end;

this is just a theory, i'm probably wrong....

Edited by lilcooldude69
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
Answer this question...

×   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.