- Joined
- Apr 10, 2019
- Messages
- 1
- Reaction score
- 0
- First Language
- English
- Primarily Uses
- RMMV
I want to make a Attachment for a weapon that replicates this script from the Hestia Knife video
<Custom Parameters>
atk=user.paramBase(2)*0.10 + user.level;
</Custom Parameters>
The issue I have is the Attach Augment Eval doesn't seem to have a way to fetch the weapon's user data
<Augment Attach Eval: Glyph>
item.params[2] += item.parent().paramBase(2)*0.10+parent.level;
</Augment Attach Eval: Glyph>
<Augment Detach Eval: Glyph>
item.params[2] -= item.parent().paramBase(2)*0.10+parent.level;
</Augment Detach Eval: Glyph>
please help T.T
<Custom Parameters>
atk=user.paramBase(2)*0.10 + user.level;
</Custom Parameters>
The issue I have is the Attach Augment Eval doesn't seem to have a way to fetch the weapon's user data
<Augment Attach Eval: Glyph>
item.params[2] += item.parent().paramBase(2)*0.10+parent.level;
</Augment Attach Eval: Glyph>
<Augment Detach Eval: Glyph>
item.params[2] -= item.parent().paramBase(2)*0.10+parent.level;
</Augment Detach Eval: Glyph>
please help T.T

