Wallpaper Engine

Wallpaper Engine

DDLC Interactive Chibis
Showing 1-2 of 2 entries
Update: 13 Jan, 2018 @ 3:59am

JavaScript Error and Background Colour

Update! Hello everyone,

I must apologise for the complete silence from me regarding this wallpaper and problems people have with it. I made this as a webpage and only thought about posting it to Wallpaper Engine once it was suggested to me.

The JavaScript Error has been fixed.

I want to thank Steam user Awoo for finding this fix and posting it in the user comments. Because of the nature of the error and the program I made the wallpaper in (GameMaker Studio), I knew that this error did not affect the way the program would function, but was under the impression that it could not be avoided when running GameMaker JavaScript locally. Fortunately, this was not the case and Awoo found where the error was being produced and cut it off. The new version of the wallpaper incorporates this fix directly and so the error should no longer occur.

The background colour can be changed, here is how.

The feature I see most requested is the ability to change the background colour, which is possible but not simple, and again requires editing the JavaScript file. I have written a step-by-step guide on how I know the background colour can be changed as simply as I can put it:

- Decide on the colour you want the background to be in RGB Hexadecimal notation.

- Reverse the order of the three colours, so that instead of going RGB (red to green to blue) it goes BGR (blue to green to red), as an example, the colour FF-BD-E1 would become E1-BD-FF.

- Convert this new colour to decimal notation, using a site such as this [www.rapidtables.com]. As an example, the colour E1BDFF would become 14794239.

- Open the file “Doki Doki Wallpaper.js” in your Steam Workshop files, using a text editor such as Notepad. In my case, this file was located in “Program Files (x86)\Steam\steamapps\workshop\content\431960\1237159528\doki_assets”, but this may vary by system.

- Within this file, use CTRL+F to search for the term “rm_room”, shortly after that you should find the value “_k3”, which by default will be set to “14794239”, replace this number with the decimal colour you have made.

Thank you for using this wallpaper, I never expected as much attention for it as I have got. Please let me know if there are any further questions or problems.

- Joe <3

Update: 20 Dec, 2017 @ 1:41am