waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
WAY_Achievements
by waynee95​

NOTE: I am no longer working with RPG Maker and have no interest in getting back into it. This means that I will NOT add any additional features to my plugins nor fix bugs unfortunately. Feel free to make edits yourself. Please refrain from contacting me privately about my plugins.

Create Achievements for your game.

Webp.net-compress-image.jpg

Features
  • Uses the new MV1.5.0 Plugin Parameter
  • Create many different categories
  • Notification popup window
  • Compatible with YEP_MainMenuManager
  • Use any JavaScript code as the condition for your achievement
How to use
Put this plugin at the bottom of the list.

How to add an achievement to the game:
  1. Open the plugin in the Plugin Manager
  2. Click on the Achievement List parameter
  3. Click on an empty slot
  4. Now you can create an achivement
Check out the help file for more infos!

Note: Due to time constraints and shift of interests all my plugins are in maintenance mode only which means I only fix critical bugs but don't implement any new additional features.

Download: https://raw.githubusercontent.com/waynee95/mv-plugins/master/dist/WAY_Achievements.js

!!! Make sure to also install WAY_Core !!!
You can get it here https://raw.githubusercontent.com/waynee95/mv-plugins/master/dist/WAY_Core.js

If you want to use this plugin with RPG Maker MZ, check out Project FOSSIL made by @Restart

Terms of Use
This work is licensed under the MIT license.
More info here: https://github.com/waynee95/mv-plugins/blob/master/LICENSE
 
Last edited:

Neo Soul Gamer

Veteran
Veteran
Joined
Aug 10, 2012
Messages
675
Reaction score
438
First Language
English
Primarily Uses
N/A
Welcome back Waynee! Missed you bro!
Edit: No screenshots?
 

Jewelraffe

Villager
Member
Joined
Feb 19, 2017
Messages
26
Reaction score
5
First Language
English
Primarily Uses
RMMV
Awesome!

Small question, is it possible to put an achievement into multiple categories?
 

waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
@Jewelraffe
That's a good idea. I implemented it just now. Just download it again.

WAY_Achievements v1.1.0
- Allow achievements to be part of multiple categories

Now you can specify multiple categories for the achievement. Just add all the category names to the Category parameter of the achievement and seperate them by a space, like "All Battle Items". Then the achievement would appear in all those 3 categories.
 

Jewelraffe

Villager
Member
Joined
Feb 19, 2017
Messages
26
Reaction score
5
First Language
English
Primarily Uses
RMMV
Oh nice! Thanks waynee95!

I even figured out two possibly useful conditions for people to use:

$gameParty.members().indexOf($gameActors.actor(putIDhere)) > -1 will grant the achievement if that actor is in your party and while probably common knowledge amongst programmers, but I managed to string together a bunch of conditions with && and !condition works for inverses too. I even strung 5 level checks to give an achievement for 5 specific heroes being at L50.

So $gameSwitches.value(1) && !$gameSwitches.value(2) would grant achievement if switch 1 is on while switch 2 is off. Figured I'd mention this so laymen can find even more ways to use this cool plugin. I didn't even know this worked until I tried it!
 

waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
@Jewelraffe
Really cool to see what people come up with, I will add a small example for the "!" and "&&" to the plugin help file. :)
 

waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
WAY_Achievements v1.2.0
I added an option and plugin commands for enabling/disabling the notification popups.
 

Raggon

Veteran
Veteran
Joined
Sep 29, 2018
Messages
111
Reaction score
75
First Language
english
Primarily Uses
RMMV
hi great plugin. i need help getting the id of the achievement getting the common event please . i want to make an if condition. like if $gameSwitches.value(1) what do i use for if $gameAchievements.value(1) ? would that return an achievement with the id of 1 ?

also to expand on this i`m trying to make a check to stop the achievement from coming back multiple times. once the achievement(1) comes the common event tells a switch(1) to come on and if the switch is on achievement doesnt pop up again.
 
Last edited:

waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
@Raggon
To get the achievement for a corresponding id, you use
Code:
$gameAchievements.achievement(id)

What do you mean by

"stop the achievement from coming back".

It shouldn't come back, unless you revert the condition somehow?
 

Raggon

Veteran
Veteran
Joined
Sep 29, 2018
Messages
111
Reaction score
75
First Language
english
Primarily Uses
RMMV
i have an intro and if someone watches it i put
Code:
$gameSwitches.value(401)
before that i just switched the switch 401 on . for some reason . it keeps popping back up...

And thankyou for your code...

Now this is not working. im trying to tell the common event if someone watches the Achievement with id 7 run this .

which is going to be a check to stop any more coming up. i can do it with multiple common event calls but i was trying to do it with this one common event.

At the moment all of them are loading even if only id 7 has been achieved....

Hey can you tell me what the code is
to check if id 7 has been achieved? :)
code.png


p.s. i had 400 frames for notification popup put it down to 120... i guess on auto change map the achievement popup plays a sound and comes back..
 
Last edited:

waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
@Raggon
To check if an achievement is completed, you do
Code:
$gameAchievements.achievement(id).check()
inside an if. If this will evaluate to true, then the achievement is completed.

EDIT: What is the condition specified in the plugin params for the achievement that "comes back"?
 

Jenova

Because you are...a puppet!
Veteran
Joined
Nov 29, 2017
Messages
476
Reaction score
312
First Language
English
Primarily Uses
RMMV
Hi, I wanted to use your Achievements plugin, but no matter where I place it in the Plugin Manager, the attached error pops up. Not sure what I am doing wrong...
 

Attachments

  • Wanye error.png
    Wanye error.png
    19.7 KB · Views: 19

waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
@Jenova
Did you create an achievement already or do you just put the plugin into the manager and it does not even start?

What happens when you disable all other plugins?
 

Jenova

Because you are...a puppet!
Veteran
Joined
Nov 29, 2017
Messages
476
Reaction score
312
First Language
English
Primarily Uses
RMMV
@Jenova
Did you create an achievement already or do you just put the plugin into the manager and it does not even start?

What happens when you disable all other plugins?

Sorry it took so long. I was working on my website.

I cant disable ALL plugins because then I get an error from Orange Time System that its not enabled. But once I turn it on (all others but your plugins and OTS are off) the error still comes back (Left Hand error)

I do have ONE achievement. Its just to take 100 steps. I set it up to react when a switch is turned on.

Funny thing is, I cant even start a New Game without this error happening.

EDIT: To fix this kind of issue, make sure you have TWO symbols in your Achievements Condition instead of the one I had.

Example:
Code:
$gameVariables.value(30) == 600
Do you see how I have "==" and not just "="? If you wanted to make something equal, you would make it "==" instead of "=". This was my mistake. I hope this helps others with their issues of this kind. :)
 
Last edited:

CorpseFather

Veteran
Veteran
Joined
Aug 5, 2018
Messages
31
Reaction score
5
First Language
English
Primarily Uses
RMMV
How big does the background need to be?
 

Raggon

Veteran
Veteran
Joined
Sep 29, 2018
Messages
111
Reaction score
75
First Language
english
Primarily Uses
RMMV
does Way Achievement scroll overflow?
 
Last edited:

KTRay0405

Conservative Christian
Veteran
Joined
Apr 26, 2020
Messages
49
Reaction score
5
First Language
English
Primarily Uses
RMMV
@waynee95 Hi! So, I'm trying to make an achievement that, if a switch is turned on, then the player will achieve the achievement.

I'm not that good at JavaScript, but I've tried using this code, and the one below it, but neither have worked:

JavaScript:
$gameSwitches.value(1).check()

$gameSwitches.value(1)
 

waynee95

Inactive
Veteran
Joined
Jul 2, 2016
Messages
710
Reaction score
643
First Language
German
Primarily Uses
RMMV
@Dolphin458
JavaScript:
$gameSwitches.value(1)

Should work though. Then the achivement would be unlocked when you turn on the switch with ID 1.
 

Latest Threads

Latest Posts

Latest Profile Posts

Damn, took a chance on a paid MV plugin working with MZ (FOSSIL) but didn't work :p Been lucky up until now so I got cocky!
Going to be streaming more RM game dev in about 20 minutes or so...

Hello, debt! But it matches my eyes, don't you think?

forester.jpg
Gnyaaaa! Invisible comments on YouTube!!!
When I learned about multithreading in C++, one of the first things was that while heap is shared, each thread has its own stack and it's impossible to access another thread's stack.
So I wrapped the variables into a static class and passed its address to another thread. And it worked.

Forum statistics

Threads
129,985
Messages
1,206,749
Members
171,219
Latest member
apkmodyinfo
Top