Stack of critical chance

Do you know a code that can do my request ?

  • Yes i have

    Votes: 0 0.0%
  • No i don't

    Votes: 0 0.0%

  • Total voters
    0

Grumphlu

Veteran
Veteran
Joined
Mar 25, 2015
Messages
34
Reaction score
7
First Language
Français
Primarily Uses
Hi Everyone !

I'm using Yanfly Plugins (Battle Core, Buff and Sate etc...)

I'm trying to do a state that win stacks and each stack will up the user's critical chance, up his attack but lower his hit rate.

My state is "Alcohol" i put Yanfly confusion's code from Pokemon for the user to have a chance to hit himself. But my state of alcohol will increase Critical rate, buff his Attack and lower his hit rate. So more he drinks more he have critical chances and stronger he is but less he can hit his target (because he's drunk as hell and he can't see nothing)

So, my code here is

<Custom Apply Effect>

target.addStateCounter(stateId, 1);

</Custom Apply Effect>



<Custom Action Start Effect>

// Calculate the confusion success rate

var confuseRate = 0.17;

// Check RNG if it passed

if (Math.random() < confuseRate) {

// Get the confusion skill for the user to perform

var confusionSkill = 5;

// Start the animation

user.startAnimation(63);

// Get the user's current action

var action = user.currentAction();

// Set it to the confusion skill

action.setSkill(confusionSkill);

}

</Custom Action Start Effect>


And i know that now what is missing is to add critical chance multiply by my number of stacks, a code for buffing his Attack for some turns AND my Hit Rate divided my number of stacks too.

Thanks in advance for your help and sorry for my english, if some sentences are weird it's only because i'm french.
 

Grumphlu

Veteran
Veteran
Joined
Mar 25, 2015
Messages
34
Reaction score
7
First Language
Français
Primarily Uses
I tried also to do something like

<Custom Apply Effect>

user._drunk = user._drunk || 0;

// Increase the drunk stack by 1

user._drunk += 1;

user._drunk = Math.min(user._drunk, 6);

user.setStateCounter(stateId, user._drunk);

</Custom Apply Effect>



<Custom Action Start Effect>

// Calculate the confusion success rate

var confuseRate = 0.17;

// Check RNG if it passed

if (Math.random() < confuseRate) {

// Get the confusion skill for the user to perform

var confusionSkill = 5;

// Start the animation

user.startAnimation(63);

// Get the user's current action

var action = user.currentAction();

// Set it to the confusion skill

action.setSkill(confusionSkill);

}

</Custom Action Start Effect>

And now i need to set the critical rate multiply by the number of "user._drunk" stacks. Lower Hit rate by number of "user._drunk" stacks and add an Attack's buff for like 3/5 turns.

Im still trying many ways like user.cri= (15 / 100) * user._drunk but i don't get it ^^ and i can't really find the code for that, same with hit rate.
Then buff i think will be user.addBuff(2,5) ?

Thanks in advance
 

Grumphlu

Veteran
Veteran
Joined
Mar 25, 2015
Messages
34
Reaction score
7
First Language
Français
Primarily Uses
So,

Im responding again for myself, for thoose who want to do the same i figure it out by myself (and proud of it)

SO, for making a drunking state that everytime you drink more, you buff Yourself, increase Critical but low your Hit Rate and have a chance to hit yourself this is the code i use (but you can take off the buff and add it by normal skill command)

<Custom Apply Effect>

user._drunk = user._drunk || 0;

// Increase the drunk stack by 1

user._drunk += 1;

user._drunk = Math.min(user._drunk, 3);

user.setStateCounter(stateId, user._drunk);

user.addBuff (2,5);

user.addBuff (2,5);

user.addCri(0.33 * user._drunk);

user.minu****(0.15 * user._drunk);

</Custom Apply Effect>



<Custom Action Start Effect>

// Calculate the confusion success rate

var confuseRate = 0.17;

// Check RNG if it passed

if (Math.random() < confuseRate) {

// Get the confusion skill for the user to perform

var confusionSkill = 454;

// Start the animation

user.startAnimation(63);

// Get the user's current action

var action = user.currentAction();

// Set it to the confusion skill

action.setSkill(confusionSkill);

}

</Custom Action Start Effect>



<Custom Leave Effect>

// Set the user's stockpile stack to 0

user._drunk = 0;

// Update the state counter for the stockpile stack

user.setStateCounter(stateId, user._drunk);

</Custom Leave Effect>

Have a nice day and don't drink too much, just a few ;)
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

How many parameters is 'too many'??
Yay, now back in action Happy Christmas time, coming back!






Back in action to develop the indie game that has been long overdue... Final Fallacy. A game that keeps on giving! The development never ends as the developer thinks to be the smart cookie by coming back and beginning by saying... "Oh bother, this indie game has been long overdue..." How could one resist such? No-one c
So I was playing with filters and this looked interesting...

Versus the normal look...

Kind of gives a very different feel. :LZSexcite:
To whom ever person or persons who re-did the DS/DS+ asset packs for MV (as in, they are all 48x48, and not just x2 the pixel scale) .... THANK-YOU!!!!!!!!! XwwwwX

Forum statistics

Threads
105,849
Messages
1,016,981
Members
137,563
Latest member
cexojow
Top