- Joined
- Mar 30, 2016
- Messages
- 214
- Reaction score
- 269
- First Language
- Russian
- Primarily Uses
- RMMV
Hello. My name is DK. I'm russian programmer and i want to share you my plugins.
One of them - Actors EXP.
It allows you to customize the experience for each class separately or for all classes at once.
Instruction:
Open js plugin file and customize ACTORS_EXP variable.
class_id = 0 for all classes
ACTORS_EXP[class_id] = {
level: exp,
level: exp,
}
An example for all classes:
ACTORS_EXP[0] = {
1: 0,
2: 600,
3: 2100,
};
Example for first class:
ACTORS_EXP[1] = {
1: 0,
2: 300,
3: 500,
4: 600,
};
Download: View attachment DK_Actors_Exp.js
My site: http://dk-plugins.ru/
One of them - Actors EXP.
It allows you to customize the experience for each class separately or for all classes at once.
Instruction:
Open js plugin file and customize ACTORS_EXP variable.
class_id = 0 for all classes
ACTORS_EXP[class_id] = {
level: exp,
level: exp,
}
An example for all classes:
ACTORS_EXP[0] = {
1: 0,
2: 600,
3: 2100,
};
Example for first class:
ACTORS_EXP[1] = {
1: 0,
2: 300,
3: 500,
4: 600,
};
Download: View attachment DK_Actors_Exp.js
My site: http://dk-plugins.ru/
Last edited by a moderator:
