My Grand Introduction

CxNxRx

Villager
Member
Joined
Dec 29, 2017
Messages
12
Reaction score
7
First Language
English
Primarily Uses
RMMV
Hello everyone, I've had RPG Maker MV for almost a year now, and I've gotten really used to it, but I've never really made a post on the forums yet, so I believe it would be a good time to do so. I've used the forums alot for plug-in and resource searching mainly, so I'll attempt to contribute. I own MV and XP (Steam) and judging by my hours on the two, I'm a bit stronger with MV.


Feel free to learn a bit about me if you'd like. :kaoluv:
First of all I'm a big fan of underground hardcore EDM / Gabber music subgenres (In fact I'm listening to Angerfist right now (also my profile picture)). This includes Hardcore, Frenchcore, Terrorcore, Hardstyle, basically anything around there (including extratone owo). Another thing about me is I also enjoy producing a bit of it for fun.
If it ain't dutch, it ain't much ¯\_(ツ)_/¯

Video game wise I'm obviously a fan of turn based RPG's, but I'm also a big fan of survival games and basically anything I can build in. Some of my favorite AAA developers are Bethesda, Ubisoft and Valve. I'm also a huuggeee fan of the source engine and any game on it. I've had an interest in making games for a while. It all started out with Minecraft and it's very open usability giving me inspiration for so much in my interest for game development.

I honestly cannot draw if my life depended on it. I rely solely on the default rtp and free stuff :/ but i make way with it. I haven't finished a project yet which is the main reason I focus on free assets, to test myself if I can truly make way with all of this nonsense. But oh boy I still love it. I really hope to get along very well in the community :)
 

Finnuval

World (his)story builder and barrel of ideas
Veteran
Joined
Aug 1, 2018
Messages
1,946
Reaction score
6,606
First Language
Dutch
Primarily Uses
RMMV
My grand reaction (Geintje) : Welcome and have fun!
 

l8rose

Perpetually Exhausted
Veteran
Joined
Jun 1, 2014
Messages
447
Reaction score
1,448
First Language
English
Primarily Uses
RMMV
Welcome to non-lurking on the forums!
MV is a lot of fun... but I won't admit how many hours I've sunk into messing with it. >_>
Can't wait to see what you contribute, whether it's resources, games or just chit chat. =D
 

MushroomCake28

KAMO Studio
Global Mod
Joined
Nov 18, 2015
Messages
3,729
Reaction score
4,685
First Language
English
Primarily Uses
RMMZ
Welcome to this community! You'll see, people are very kind, understanding, and helpful here. Status posts is a good way to learn more about each other and to participate in this community. You'll see that the same names constantly poop out.
 

CxNxRx

Villager
Member
Joined
Dec 29, 2017
Messages
12
Reaction score
7
First Language
English
Primarily Uses
RMMV
Welcome to this community! You'll see, people are very kind, understanding, and helpful here. Status posts is a good way to learn more about each other and to participate in this community. You'll see that the same names constantly poop out.
I'll take that into consideration, I honestly have at least 1 tab open with the forums up at a time so it won't be a problem.

Welcome to non-lurking on the forums!
MV is a lot of fun... but I won't admit how many hours I've sunk into messing with it. >_>
Can't wait to see what you contribute, whether it's resources, games or just chit chat. =D
I can't wait to contribute as well, I'm very excited myself.

Thank you very much to both of you :kaothx:
 

Poryg

Dark Lord of the Castle of Javascreeps
Veteran
Joined
Mar 23, 2017
Messages
4,125
Reaction score
10,640
First Language
Czech
Primarily Uses
RMMV
I can't draw for life either. Scripting and plugin making is my much stronger side :}
Welcome here.
 

CxNxRx

Villager
Member
Joined
Dec 29, 2017
Messages
12
Reaction score
7
First Language
English
Primarily Uses
RMMV
I can't draw for life either. Scripting and plugin making is my much stronger side :}
Welcome here.
I believe I'd have an enjoyment in plugins and scripting, I'll just have to figure out. Not now, I'm tired :kaoslp:
 

Poryg

Dark Lord of the Castle of Javascreeps
Veteran
Joined
Mar 23, 2017
Messages
4,125
Reaction score
10,640
First Language
Czech
Primarily Uses
RMMV
You can never have enough plugin makers :D But yeah, it takes a little bit of time and concentration to crack it. I'd also recommend a small degree of understanding javascript and basic programming logic (I got my understanding of basic programming logic from rpg maker 2003 - back in 2009 there was nobody who would help me make what I wanted to make... So I had to devise everything including ABS and skills myself).
 

CxNxRx

Villager
Member
Joined
Dec 29, 2017
Messages
12
Reaction score
7
First Language
English
Primarily Uses
RMMV
You can never have enough plugin makers :D But yeah, it takes a little bit of time and concentration to crack it. I'd also recommend a small degree of understanding javascript and basic programming logic (I got my understanding of basic programming logic from rpg maker 2003 - back in 2009 there was nobody who would help me make what I wanted to make... So I had to devise everything including ABS and skills myself).
I've taken a few "Classes" for programming so i have a tiny understanding, but not for java script, at least I dont think so.
If i cant remember if I took a class on it its a safe bet I'll be learning as if I was brand new but oh boy do i understand logic :guffaw:

But the idea of programming plugins interests me very much
 

Poryg

Dark Lord of the Castle of Javascreeps
Veteran
Joined
Mar 23, 2017
Messages
4,125
Reaction score
10,640
First Language
Czech
Primarily Uses
RMMV
Javascript is not that different from other languages except of course for different syntax... And for hated-by-many prototype system - the way how js handles object oriented programming. It is also much more lenient in terms of syntax and allows for some real dirty things to be done, yet still acceptable by javascript interpreters :D

Code:
var x = 5;
x.x = 6;
if (x.x) x.y = 6;
if (x.z) x.y = 3;
console.log(x.y)
//outputs 6
 

CxNxRx

Villager
Member
Joined
Dec 29, 2017
Messages
12
Reaction score
7
First Language
English
Primarily Uses
RMMV
Javascript is not that different from other languages except of course for different syntax... And for hated-by-many prototype system - the way how js handles object oriented programming. It is also much more lenient in terms of syntax and allows for some real dirty things to be done, yet still acceptable by javascript interpreters :D
Well I've got some fun in the near future, and I just checked and I did regular java, :kaoangry:
I'm always open to learning something new though
 

Poryg

Dark Lord of the Castle of Javascreeps
Veteran
Joined
Mar 23, 2017
Messages
4,125
Reaction score
10,640
First Language
Czech
Primarily Uses
RMMV
Well, just be ready that java to javascript is like ham to hamster :D If you want, I added some nice example in my previous post. Java would find it absolutely unacceptable for several reasons, in fact I don't know any language other than javascript that would accept what I put there.
 

CxNxRx

Villager
Member
Joined
Dec 29, 2017
Messages
12
Reaction score
7
First Language
English
Primarily Uses
RMMV
Well, just be ready that java to javascript is like ham to hamster :D If you want, I added some nice example in my previous post. Java would find it absolutely unacceptable for several reasons, in fact I don't know any language other than javascript that would accept what I put there.
Sorry I honestly didnt notice the spoiler the first time :guffaw: but I'm gonna have a great time no doubt about it hahahaha....
but for real it will all be worth it in the end
 

Poryg

Dark Lord of the Castle of Javascreeps
Veteran
Joined
Mar 23, 2017
Messages
4,125
Reaction score
10,640
First Language
Czech
Primarily Uses
RMMV
It wasn't there, I edited it in.
 

Kupotepo

Fantasy realist/Advocatus Diaboli
Veteran
Joined
Jul 5, 2017
Messages
1,945
Reaction score
2,065
First Language
Thai
Primarily Uses
RMMV
Nice to meet you. You can commission for a person to draw for you. Not many people here have a skill draw on a computer. And you have to pick a different style of arts too. Some art like a pixel is a little easy. Anime art on a game is a nightmare even if you know to draw. You can do script if you are strong with logic and math.
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Profile Posts

Our latest feature is an interview with... me?!

People4_2 (Capelet off and on) added!

Just beat the last of us 2 last night and starting jedi: fallen order right now, both use unreal engine & when I say i knew 80% of jedi's buttons right away because they were the same buttons as TLOU2 its ridiculous, even the same narrow hallway crawl and barely-made-it jump they do. Unreal Engine is just big budget RPG Maker the way they make games nearly identical at its core lol.
Can someone recommend some fun story-heavy RPGs to me? Coming up with good gameplay is a nightmare! I was thinking of making some gameplay platforming-based, but that doesn't work well in RPG form*. I also was thinking of removing battles, but that would be too much like OneShot. I don't even know how to make good puzzles!
one bad plugin combo later and one of my followers is moonwalking off the screen on his own... I didn't even more yet on the new map lol.

Forum statistics

Threads
106,034
Messages
1,018,446
Members
137,820
Latest member
georg09byron
Top