OcRam

Servant of the Universe
Regular
Joined
Aug 2, 2016
Messages
954
Reaction score
1,118
First Language
Finnish
Primarily Uses
RMMZ
Preparing update for upcoming OcRam -demo project.

OcRam_Core v1.04
String.width() prototype added!
OcRam.getSpriteByEventId(event_id) added!

OcRam_Time_System v1.03
Map clock window is now under messages layer
+ Compatibility patch for OcRam passages

OcRam_Labels v1.00
Initial release

OcRam_Layers v1.01
Some picture plugin command bug fixes + battle pics
Compatibility patch to OcRam_Passages
+ VisuMZ compatibility patch

OcRam_Passages v1.02
Compatibility patch for OcRam_Layers
+ Tileset change bug fixes
 

BrentBAM

Regular
Regular
Joined
Jul 22, 2020
Messages
96
Reaction score
59
First Language
English
Primarily Uses
RMVXA
Preparing update for upcoming OcRam -demo project.

OcRam_Core v1.04
String.width() prototype added!
OcRam.getSpriteByEventId(event_id) added!

OcRam_Time_System v1.03
Map clock window is now under messages layer
+ Compatibility patch for OcRam passages

OcRam_Labels v1.00
Initial release

OcRam_Layers v1.01
Some picture plugin command bug fixes + battle pics
Compatibility patch to OcRam_Passages
+ VisuMZ compatibility patch

OcRam_Passages v1.02
Compatibility patch for OcRam_Layers
+ Tileset change bug fixes
Awesome. Can’t wait to try the demo!!
 

Retroverse

Veteran Gamer
Regular
Joined
Mar 26, 2012
Messages
99
Reaction score
20
First Language
English
Primarily Uses
RMMZ
I'm using the time system with the analog clock and I have a question how do I change the date format? It's day month. Year.

But I want to be Month Day, Year.
 

OcRam

Servant of the Universe
Regular
Joined
Aug 2, 2016
Messages
954
Reaction score
1,118
First Language
Finnish
Primarily Uses
RMMZ
I'm using the time system with the analog clock and I have a question how do I change the date format? It's day month. Year.

But I want to be Month Day, Year.
Thank you for the message,

I will add date format in next version.
 

Jentokki

Villager
Member
Joined
Sep 11, 2020
Messages
7
Reaction score
4
First Language
French
Primarily Uses
RMMZ
Hello! I am very new with plugins so i'm not sure if i'm doing something wrong...
I tried using your lights plugin for a fireplace, but it doesn't show anything?
Here's what i have.
fp1.pngfp2.png
 

Kupotepo

Fantasy realist/Advocatus Diaboli
Regular
Joined
Jul 5, 2017
Messages
1,943
Reaction score
2,104
First Language
Thai
Primarily Uses
RMMV
@OcRam, wow that is brilliant of you in which your plugins work with MZ as well as MV. Thank you for sharing plugins with us all.
 

OcRam

Servant of the Universe
Regular
Joined
Aug 2, 2016
Messages
954
Reaction score
1,118
First Language
Finnish
Primarily Uses
RMMZ
Hello! I am very new with plugins so i'm not sure if i'm doing something wrong...
I tried using your lights plugin for a fireplace, but it doesn't show anything?
Here's what i have.
Thank you for the message,

You need to set light bg in order to any light sources to show up.

support.png
Put this command in "autorun" event and then call "Erase Event"
 

Jentokki

Villager
Member
Joined
Sep 11, 2020
Messages
7
Reaction score
4
First Language
French
Primarily Uses
RMMZ
@OcRam It does work a lot better! I'm sorry i didn't see this. Thanks for replying so fast!
 

Kneeshaw

Kneeshaw Developments
Regular
Joined
Dec 2, 2015
Messages
60
Reaction score
51
First Language
French
Primarily Uses
RMMV
Using the only plugin OcRam_Core v1.04 and Time Progress (active) battle system. On enemy death, the game falls into a loop trying to add knockout( death state)Capture.PNG)
 

OcRam

Servant of the Universe
Regular
Joined
Aug 2, 2016
Messages
954
Reaction score
1,118
First Language
Finnish
Primarily Uses
RMMZ
Using the only plugin OcRam_Core v1.04 and Time Progress (active) battle system. On enemy death, the game falls into a loop trying to add knockout( death state)View attachment 162866)
Thank you for the message,

Can't replicate this issue. Are you using any other plugins?
 

Kneeshaw

Kneeshaw Developments
Regular
Joined
Dec 2, 2015
Messages
60
Reaction score
51
First Language
French
Primarily Uses
RMMV
I have no other plugins active. no Script or plugin calls. Can I send you a github link?
 

OcRam

Servant of the Universe
Regular
Joined
Aug 2, 2016
Messages
954
Reaction score
1,118
First Language
Finnish
Primarily Uses
RMMZ
I have no other plugins active. no Script or plugin calls. Can I send you a github link?
Is this wrong thread because your project was for MV? And I don't have 'Core' -plugin for MV.
 

Kneeshaw

Kneeshaw Developments
Regular
Joined
Dec 2, 2015
Messages
60
Reaction score
51
First Language
French
Primarily Uses
RMMV
I am porting to MZ there is a branch for MZ that is current for this issue
 

OcRam

Servant of the Universe
Regular
Joined
Aug 2, 2016
Messages
954
Reaction score
1,118
First Language
Finnish
Primarily Uses
RMMZ
I am porting to MZ there is a branch for MZ that is current for this issue
For some reason Array.remove polyfill fails.

Quick fix is to delete/comment following code block:
Code:
if (!this.remove) {
    this.prototype.remove = function (itm) {
        let i = this.indexOf(itm);
        this.splice(i, 1); return this;
    };
}

This is found around lines ~349 to 354
 

Anyone

Regular
Regular
Joined
Aug 24, 2019
Messages
279
Reaction score
384
First Language
German
Primarily Uses
RMMV
Awesome stuff, great to see you port your things over.

Out of curiosity, have you considered also implementing lightmaps and lightobjects in your light plugin?
(Lightmap being an image that is used as light overlay for the map, lightobject being an image that is attached to an object)

I'm asking because I've been looking for an MZ lighting plugin, but I've got an entire arsenal of custom-tailored light effect images I'd like to use. (I've been using Khas Lighting in MV for that reason)
 

Kneeshaw

Kneeshaw Developments
Regular
Joined
Dec 2, 2015
Messages
60
Reaction score
51
First Language
French
Primarily Uses
RMMV
For some reason Array.remove polyfill fails.

Quick fix is to delete/comment following code block:
Code:
if (!this.remove) {
    this.prototype.remove = function (itm) {
        let i = this.indexOf(itm);
        this.splice(i, 1); return this;
    };
}

This is found around lines ~349 to 354
That worked thank you.
 

OcRam

Servant of the Universe
Regular
Joined
Aug 2, 2016
Messages
954
Reaction score
1,118
First Language
Finnish
Primarily Uses
RMMZ
Awesome stuff, great to see you port your things over.

Out of curiosity, have you considered also implementing lightmaps and lightobjects in your light plugin?
(Lightmap being an image that is used as light overlay for the map, lightobject being an image that is attached to an object)

I'm asking because I've been looking for an MZ lighting plugin, but I've got an entire arsenal of custom-tailored light effect images I'd like to use. (I've been using Khas Lighting in MV for that reason)
I have considered those + WebGL + real-time shadows, but first things first =)

Still in progress: OcRam_Movement, OcRam_Local_Coop, OcRam_Messages + other small plugins and I'm thinking about quest journal also... Then I'll focus on next gen Lights.

And thank you for the compliments.
 

Anyone

Regular
Regular
Joined
Aug 24, 2019
Messages
279
Reaction score
384
First Language
German
Primarily Uses
RMMV
I have considered those + WebGL + real-time shadows, but first things first =)

Still in progress: OcRam_Movement, OcRam_Local_Coop, OcRam_Messages + other small plugins and I'm thinking about quest journal also... Then I'll focus on next gen Lights.

And thank you for the compliments.
Realtime shadows. :wub

They're gonna be tricky, though. I've spoken with a couple other devs who've also made lighting plugins (though not with images) for MZ and they've run up against the engine limitations. Doable, but hardware hungry and depends on how much variables you use to calculate the caster shadows.

But if you can manage it, that'd be incredible. :D
 

Retroverse

Veteran Gamer
Regular
Joined
Mar 26, 2012
Messages
99
Reaction score
20
First Language
English
Primarily Uses
RMMZ
Can you add another weather effect? I was thinking falling leaves for autumn?
 

Latest Threads

Latest Posts

Latest Profile Posts

made a face sprite for the little guy using default cat for comparison, I'm rather pleased with how it turned out!

image.png
Playing arounnd with NUUN's Battle Result as a VS Victory Aftermath alternative. Loving it so far despite the learning curve (there are a LOT of parameters)

1701665328725.png

Just have to figure out how to addin sub class progress.
Partitito's story is supposed to be about defeating poverty while thinking he is a capitalist with socialist ideas. But it's really about stories of redemption and perseverance.
Who would have thought an idea like "I wanna put the character bio in the equip screen" would turn into a bunch of work and fun collaboration @Puppet Knight . Now my Equip/Character screen is the way I want it.
Screenshot 2023-12-03 194313.png
Just one more week of grinding through semester finals and I'll be able to actually work on some games and stuff. Hopefully I'll be able to work on my game document to actually have my ideas somewhere outside of my cranium of madness.

Forum statistics

Threads
136,729
Messages
1,269,254
Members
180,447
Latest member
somedudewhoplays
Top