Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

coffeenahc

75
Posts
2
Topics
127
Followers
A member registered Sep 15, 2022 · View creator page →

Creator of

Recent community posts

Possibly, in a future update, but not anytime soon.

I'll look into it when I have the time.

(1 edit)

I have been very clear in the product description about this, but I'd like to reiterate it again here as I keep getting complaints about the tool not working. The tool is indeed working. You just haven't done enough reading to make it work. 

You will need two things to make this tool work:

1. An OpenAI API Key which you can generate here.
2. And API credits to make your API key work. You can top up credits from this page

After checking off those two things, simply copy your OpenAI API key and paste it in the settings within the tool and you're good to go.

Does that mean there is an additional cost on top of the one time payment for the tool in order to get it working?

- Correct. You will need to top upyour OpenAI account with api credits so that your api key can work. 

How much would the additional cost be?

- That'll depend on your usage of the tool. As of writing, the minimum amount you can top up from OpenAI is $5. A $5 credit should suffice for a full game or two with normal usage

Do the credits expire?
- No, they do not. 

If you need more help, my discord is open. 

I discourage the use of obfuscated plugins, so I have no intention of updating my plugins to work with theirs if there happened to be an incompatibility between the two. I can still do a compatibility patch , but it'll be a commissioned work.

You can reach me here for commissions.     

(1 edit)

There is a 'Switch On Complete' field which you can use when defining a collection. That switch will be set to 'ON' if it's completed.

You can also use the following script calls:

$gameCollection["collectionIdHere"].isCompleted
or
$gameCollection.collectionIdHere.isCompleted

Both return the same thing.

When targeting actors, make sure to wrap the actor id(s) in brackets like so:

[1,2,3] 
or
[1]

Or simply put 0 (without the brackets) to target all actors. Did you double check the template item and made sure it has stats?

Yes.

Last patch should have fixed that. Open up the plugin in a text editor (notepad will do) and search for the onMouseEnter function. It should look something like the below.

(1 edit)

You can call the below script call to access the collection scene.

SceneManager.push(Scene_Collection)
(1 edit)

I have added this feature in 1.1. Call the following script call to change the image:

 $gameActors.actor(actorId).setFpvBattlerName(battlerName);

A $5 credit would go a long way, joelhealth42.

Just skip a chocolate bar or two and you'd have saved that amount already, joelhealth42.

Saves you some extra calories too, joelhealth42.

Sounds like a win-win investment to me, joelhealth42. 

Yes, but that doesn't mean it doesn't work. I've been getting a lot of these posts as you've mentioned, and none of them seems to have bothered reading the app description. 

Also, a $5 credit should suffice for a full game or two. If you had $10 to spend, what's $5 more? 

(1 edit)

It's as simple as getting a key and pasting it in the settings. There is even hyperlink to a youtube tutorial on the product page that shows how you get the api key.  If the key doesn't work, then your OpenAI account doesn't have any credits. It doesn't get any simpler than that. 

(1 edit)

It's as simple as getting a key and pasting it in the settings. There is even hyperlink to a youtube tutorial on the product page that shows how you get the api key.  If the key doesn't work, then your OpenAI account doesn't have any credits. It doesn't get any simpler than that. 

I have updated the windows version so I can see what's up. Try again and let me know what error it says. 


The Mac version is left behind. I will update it one of these days.

Which platform is this? Windows or Mac?

All of them get updated. There's no concept of  item individuality / instances with the vanilla engine, but you can try to make it work with other plugins that offer such a feature. I can't guarantee compatibility, however.

(3 edits)

If you meant a dedicated UI to reset weapons, then no, I did not add such a feature as I've stayed true to the reference system. Perhaps if demand picks up, then I may add it in the future, or you may also commission me here to customize it according to your preference.

For now, you will have to make do with that script call, and a combination of the Input Number command to get the desired weapon/armor to reset: 

1. Add an NPC that resets weapons/armors

2. Add a Show Choice command to determine if the player wants to reset weapons or armors

3. Add an input Number command to get the weapon id or armor id to reset, that id would then be stored in a variable

4. Call the below script call. Replace accordingly. 

$gameParty._synthBonusForWeapon[$gameVariables.value(variableId)] = [0,0,0,0,0,0,0,0,0]; 
or 
$gameParty._synthBonusForArmor[$gameVariables.value(variableId)] = [0,0,0,0,0,0,0,0,0];
(1 edit)

Use a script command and type that in. Replace weaponId / armorId with the id of the weapon and you want to reset.

$gameParty._synthBonusForWeapon[weaponId] = [0,0,0,0,0,0,0,0,0];
$gameParty._synthBonusForArmor[armorId] = [0,0,0,0,0,0,0,0,0];
$gameParty._levelForWeapon[weaponId] = -1;
$gameParty._levelForArmor[armorId] = -1;

Yes, it should.

I have updated the plugin to fix this issue.

Make sure you've connected your project, and that your key has credits.

If your weapon has the below tag in the note box, it won't show up. If it's still not showing despite it not having the said tag, then it's probably a plugin conflict on your end.

<notSynthesizable>

I've updated the plugin to let you choose which equipment types are synthesizable. Download v.1.2 of the plugin for this update.

I do accept commissions. You can reach me through this link.

I stayed true to the original trade system as implemented in the reference game (.hack// G.U.) with regards to the button presses. Your suggestions are noted and I'll see if I can implement them when I have free time to update my shop's plugins.

No. The documentation is in English.

Added in version 1.1. See dev log for guide.

Released just now: 

https://coffeenahc.itch.io/front-view-animations-on-actors-plugin-rpg-maker-mv

There's no plugin parameter for it, but you can edit directly in the code. Open GBCCoffee_NinjaSagaSkillEquip.js in a text editor, and on the line where it says:

this.contents.fontSize = 10;

Is where you want to edit. Change 10 to whatever number is to your preference.

You can use the 'Sprite Offset X/Y' parameter to adjust the offsets.

Yes, but compatibility patches for obfuscated plugins will have to be commissioned work. 

It increases stats. There's only one window for material selection. There's no parameter to rename anything, but that's an easy add or to change from the code itself. 

(1 edit)

I can't remember off the top of my head, but it shouldn't be a hard add if it doesn't. I'll update once I have a lot of free time.

It's not hard, but I am working on a game project at the moment. Free requests will have to wait until I'm free and I feel like adding it to my store. Paid commissions are prioritized, on the other hand. 

You can read more about OpenAI integration from the front page of the app. If used properly as intended, the free credits from OpenAI should suffice for a full game or two. 

I have uploaded a fix (v.1.2) to address the two issues you've mentioned.

Suggestion #1 is already a feature of the plugin where you can reposition the skill and command slots from the plugin's parameters. The parameter takes in an array [x, y] to define the position. There might be a formatting error with your input that's why it's not showing.

Only mouse and touch atm. I'll add your idea of keyboard and gamepad support to my list of to dos. 

Would you be able to send a copy of your data folder? My discord username is coffeenahc.