Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: Perks
- Original author: Mr. Trivel
- Original date: November 29, 2015
- Source thread: https://forums.rpgmakerweb.com/threads/perks.51822/
- Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMV)
Summary
Name: Perks Version: 1.0 Author: Mr. Trivel Created: 2015-11-28
Archived First Post
Name: Perks
Version: 1.0
Author: Mr. Trivel
Created: 2015-11-28
What does it do?
It's a perk system. Actors get perk points on specific levels when leveling up or on every level up.
Perk points can be spent in Perks Scene which can be accessed from menu.
Screenshots:
[IMG]http://puu.sh/lBj1W/b85250be19.png[/IMG]
How to use?
Plugin Commands:
AddPerkPoints [POINTS] [ACTOR_ID] - Adds perk points to actor via plugin call. E.g. AddPerkPoints 999 5
ChangePerksCommand [TRUE/FALSE] - Changes whether Perks command locked or unlocked in menu.
How to create perks:
Place following data to Actor note field:
It just looks like a lot. Unnecessary requirements can be omitted.
<perk> - Start of the perk data.
</perk> - End of the perk data.
<name: [PERKNAME]> - Name of the perk. E.g. <name: Destroyer of Glasses>
<requirements> - Start of requirements for perk data.
atk/def/matk/mdef/agi/luk - stats required
level - level required
switch - is switch with ID ON or OFF
variable - how is variable of ID compared to VALUE (> - more than, >= more than or equal to, < less than, <= - less than or equal to, == - equal to, != - not equal to)
</requirements> - End of requirements for perk data.
<rewards> - Start of rewards data
state: [ID] - when perk is unlocked player gains permanent traits from the state of ID
</rewards> - Ends of rewards data
<description> - Description begins here
TEXT - can be multiline, can be in single line. Does text wrapping automatically.
</description> - Description ends
Examples of perks:
Plugin: Protected download
How to download Script. Click the link above, there will be a button named Raw, press Right Click -> Save As.
Terms of Use:
Don't remove the header or claim that you wrote this plugin.
Credit Mr. Trivel if using this plugin in your project.
Free for non-commercial projects.
For commercial use contact Mr. Trivel.
Version: 1.0
Author: Mr. Trivel
Created: 2015-11-28
What does it do?
It's a perk system. Actors get perk points on specific levels when leveling up or on every level up.
Perk points can be spent in Perks Scene which can be accessed from menu.
Screenshots:
[IMG]http://puu.sh/lBj1W/b85250be19.png[/IMG]
Spoiler
[IMG]http://puu.sh/lC1Gr/3103ef774a.png[/IMG]
[IMG]http://puu.sh/lC1Gr/3103ef774a.png[/IMG]
How to use?
Plugin Commands:
AddPerkPoints [POINTS] [ACTOR_ID] - Adds perk points to actor via plugin call. E.g. AddPerkPoints 999 5
ChangePerksCommand [TRUE/FALSE] - Changes whether Perks command locked or unlocked in menu.
How to create perks:
Place following data to Actor note field:
Code:
<perk>
<name: [PERKNAME]>
<requirements>
level: [LEVEL]
atk: [ATK]
def: [DEF]
matk: [MATK]
mdef: [MDEF]
agi: [AGI]
luk: [LUK]
perk: [NAME]
switch: [ID] [ON/OFF]
variable: [ID] [> >= < <= == !=] [VALUE]
</requirements>
<rewards>
state: [ID]
</rewards>
<description>
[TEXT]
</description>
</perk>
It just looks like a lot. Unnecessary requirements can be omitted.
<perk> - Start of the perk data.
</perk> - End of the perk data.
<name: [PERKNAME]> - Name of the perk. E.g. <name: Destroyer of Glasses>
<requirements> - Start of requirements for perk data.
atk/def/matk/mdef/agi/luk - stats required
level - level required
switch - is switch with ID ON or OFF
variable - how is variable of ID compared to VALUE (> - more than, >= more than or equal to, < less than, <= - less than or equal to, == - equal to, != - not equal to)
</requirements> - End of requirements for perk data.
<rewards> - Start of rewards data
state: [ID] - when perk is unlocked player gains permanent traits from the state of ID
</rewards> - Ends of rewards data
<description> - Description begins here
TEXT - can be multiline, can be in single line. Does text wrapping automatically.
</description> - Description ends
Examples of perks:
Code:
<perk>
<name: Glasses Apprentice>
<requirements>
matk: 2
</requirements>
<rewards>
state: 11
commonEvent: 4
</rewards>
<description>
Glasses.
</description>
</perk>
<perk>
<name: Glasses Master>
<requirements>
level: 10
atk: 5
def: 5
matk: 5
mdef: 5
agi: 5
luk: 5
perk: Glasses Apprentice
switch: 77 ON
variable: 77 < 76
</requirements>
<rewards>
state: 11
commonEvent: 4
</rewards>
<description>
Glasses Mastery.
Enough said.
</description>
</perk>
<perk>
<name: Mana Circulation>
<requirements>
matk: 2
</requirements>
<rewards>
state: 11
</rewards>
<description>
You have amazing ability to circulate mana around you. Gaining increase mana regeneration and mana compatibility. The spirits you summon deal more damage.
</description>
</perk>
<perk>
<name: Fire Spiritism>
<requirements>
matk: 5
luk: 2
</requirements>
<rewards>
state: 11
</rewards>
<description>
Fire spirits you summon like you more. You like them more, too.
Such a nice person.
</description>
</perk>
<perk>
<name: Mana Builder>
<requirements>
atk: 5
matk: 7
</requirements>
<rewards>
state: 11
</rewards>
<description>
Some people build things out of wordly materials. You.. you build things out of non wordly materials.
</description>
</perk>
<perk>
<name: Mana Master>
<requirements>
level: 25
matk: 15
perk: Mana Builder
</requirements>
<rewards>
state: 11
</rewards>
<description>
You are a master of mana. Mana is you. You is mana.
</description>
</perk>
Plugin: Protected download
How to download Script. Click the link above, there will be a button named Raw, press Right Click -> Save As.
Terms of Use:
Don't remove the header or claim that you wrote this plugin.
Credit Mr. Trivel if using this plugin in your project.
Free for non-commercial projects.
For commercial use contact Mr. Trivel.
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadLicense / Terms Note
Terms of Use: Don't remove the header or claim that you wrote this plugin. Credit Mr. Trivel if using this plugin in your project. Free for non-commercial projects.
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...