COELOCANTH'S PROFILE
coelocanth
5448
Search
Filter
so I have no idea who my secret santa is cause that's kind of the point but whoever you are...I love you!
I'm super happy that you enjoyed it. If it helped a little with the depression that's even better.
I actually didn't know user statuses existed or where they are published until seeing your post in the thread.
If you'd like the project files to see how everything is put together, let me know.
I actually didn't know user statuses existed or where they are published until seeing your post in the thread.
If you'd like the project files to see how everything is put together, let me know.
IGMC version removed, and progress on the non IGMC version posted
Your character art is looking nice now.
On the second map the floor (roof that the player is on) and wall tiles look a bit too similar, but the background panorama looks nice.
On the second map the floor (roof that the player is on) and wall tiles look a bit too similar, but the background panorama looks nice.
[RMMV Scripting] How do I split my plugin source code into multiple files?
Have you tried calling PluginManager.loadScript from your "main" plugin?
(it is just injecting a script element into the document referring to js/plugins/name)
(it is just injecting a script element into the document referring to js/plugins/name)
[GUESSING GAME] Secret Santa Sign-ups 2018
[RMMV] How do I use my own classes in RMMV?
[RMMV] How do I use my own classes in RMMV?
Hi Tespy,
"class" is not a keyword in javascript, if you press F12 in playtest mode it will open the debug window, and you'll be able to see the syntax errors that prevented your plugin loading.
The closest equivalent to classes is object prototypes, e.g.
Window_ActorCommand.prototype = Object.create(Window_Command.prototype);
Window_ActorCommand.prototype.constructor = Window_ActorCommand;
As well as that, MV has another way of encapsulating plugins, by wrapping everything in a function declaration.
You'll see that if you look in the kadokawa plugins they all wrap the code with
(function() {
})
Which encapsulates all the variables to be local scope instead of global.
I'd suggest starting with some javascript language tutorials - mozilla and w3schools have some good basics.
If you're coming from Ruby, you might find "coffeescript" useful, but it does add a translation step over just dropping scripts in the plugins folder.
If you're coming from Java, ignore the "java" in javascript - the languages have very little in common.
"class" is not a keyword in javascript, if you press F12 in playtest mode it will open the debug window, and you'll be able to see the syntax errors that prevented your plugin loading.
The closest equivalent to classes is object prototypes, e.g.
Window_ActorCommand.prototype = Object.create(Window_Command.prototype);
Window_ActorCommand.prototype.constructor = Window_ActorCommand;
As well as that, MV has another way of encapsulating plugins, by wrapping everything in a function declaration.
You'll see that if you look in the kadokawa plugins they all wrap the code with
(function() {
})
Which encapsulates all the variables to be local scope instead of global.
I'd suggest starting with some javascript language tutorials - mozilla and w3schools have some good basics.
If you're coming from Ruby, you might find "coffeescript" useful, but it does add a translation step over just dropping scripts in the plugins folder.
If you're coming from Java, ignore the "java" in javascript - the languages have very little in common.
[GUESSING GAME] Secret Santa Sign-ups 2018
An Eldritch Age, a Forum RPG
There's something in the air, and it's stronger than yesterday.
"Holly for the chains that bind, mistletoe for the hope of rebirth, snowdrop for winter's chill".
Iopen my brain to the world's psychic maelstrom perform a ritual to figure out what is wrong here. (eeriness roll: 9)
"Holly for the chains that bind, mistletoe for the hope of rebirth, snowdrop for winter's chill".
I
[Poll] To Outline Or Not To Outline?
An Eldritch Age, a Forum RPG
Go ahead and jump, the one lead I had to follow up on was "who is Silas", and the concert seems to be where the plot is at...
By the way, are you happy for me to continue adding background details like the ancient ruins in the forest? I figure you can pick them up, ask me to describe them in more detail, or just leave them as background colour in a narrative that focuses elsewhere.
By the way, are you happy for me to continue adding background details like the ancient ruins in the forest? I figure you can pick them up, ask me to describe them in more detail, or just leave them as background colour in a narrative that focuses elsewhere.













