Jump to content
  • 0
Sign in to follow this  
Luffy

Script Angeling wooly hat

Question

Can someone help how or what the script of this in item_db


 



Angeling Woolly Hat [1]
18838.png
A hat applied a special engine which
can move Angeling's wings. This engine seems to have a myterious
function.

All State + 1.

ATK, MATK + 2.

Additional ATK, MATK + 2 per 1 refine grade.

Transform into Angeling for 5 sec by a certain chance when attacking physically or magically.

When transforming with a phycial attack, ASPD +2 for 5 sec.

When transforming with a magical attack, decrease Floating Casting time for 5 sec.

Transformation success chance will be increased per each refine grade.

 

Share this post


Link to post
Share on other sites

6 answers to this question

Recommended Posts

  • 0

you can try something like this

http://herc.ws/board/topic/2844-monster-transform/?p=28399

 

All State + 1.

-> bonus bAllStats, 1;

ATK, MATK + 2.

-> bonus bAtk, 2; bonus bMatk, 2;

Additional ATK, MATK + 2 per 1 refine grade.

-> bonus bAtk, getrefine() *2; bonus bMatk, getrefine() *2;

 

Transform into Angeling for 5 sec by a certain chance when attacking physically or magically.

- When transforming with a phycial attack, ASPD +2 for 5 sec.

--> autobonus "{ bonus bAspd, 2; }", 10000, 5000, BF_WEAPON|BF_NORMAL, "{ disguise ANGELING; sleep2 5000; undisguise; }";

- When transforming with a magical attack, decrease Floating Casting time for 5 sec.

--> autobonus "{ bonus bCastrate, -5; }", 10000, 5000, BF_MAGIC, "{ disguise ANGELING; sleep2 5000; undisguise; }";

Transformation success chance will be increased per each refine grade.

--> ???

 

I think that means  the trigger rate of the autobonus  isn't  100%(10000)

and should be replaced with  n*getrefine() , Idk what the rate number n is equal to

,but I refrence here , it said n== 0.2%,  so...

 

autobonus "{ bonus bAspd, 2; }", 20*getrefine(), 5000, BF_WEAPON|BF_NORMAL, "{ disguise ANGELING; sleep2 5000; undisguise; }";

 

utobonus "{ bonus bCastrate, -5; }", 20*getrefine(), 5000, BF_MAGIC, "{ disguise ANGELING; sleep2 5000; undisguise; }";

Share this post


Link to post
Share on other sites
  • 0

you can try something like this

http://herc.ws/board/topic/2844-monster-transform/?p=28399

 

All State + 1.

-> bonus bAllStats, 1;

ATK, MATK + 2.

-> bonus bAtk, 2; bonus bMatk, 2;

Additional ATK, MATK + 2 per 1 refine grade.

-> bonus bAtk, getrefine() *2; bonus bMatk, getrefine() *2;

 

Transform into Angeling for 5 sec by a certain chance when attacking physically or magically.

- When transforming with a phycial attack, ASPD +2 for 5 sec.

--> autobonus "{ bonus bAspd, 2; }", 10000, 5000, BF_WEAPON|BF_NORMAL, "{ disguise ANGELING; sleep2 5000; undisguise; }";

- When transforming with a magical attack, decrease Floating Casting time for 5 sec.

--> autobonus "{ bonus bCastrate, -5; }", 10000, 5000, BF_MAGIC, "{ disguise ANGELING; sleep2 5000; undisguise; }";

Transformation success chance will be increased per each refine grade.

--> ???

Share this post


Link to post
Share on other sites
  • 0

oh ! that's another site I could refer on

魔法傷害而變身,持續5秒變動詠唱時間-50%

direct translate, magical attack and shape shift, last 5 seconds and chanting time reduce 50%

correct grammar is, when transform into angeling by magical attack, the transform last 5 seconds and casting time reduce by 50%

 

so it should be

autobonus "{ bonus bCastrate, -50; }", 20*getrefine(), 5000, BF_MAGIC, "{ disguise ANGELING; sleep2 5000; undisguise; }";

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.