Status
Not open for further replies.

licuki

Newbie
Jun 5, 2017
34
47
Holy fuck can you remove the whole waiting thing in the start, what a fucking hassle.

Just ask yes or no like everyone else, why re-invent the wheel if the car is already running, everyone will either tell the truth if they're adults or lie if they are kids, don't make me wait a minute... jeez, I FINISHED WRITING THIS WHEN THE MUSIC STARTED!!!
 

licuki

Newbie
Jun 5, 2017
34
47
Holy fuck can you remove the whole waiting thing in the start, what a fucking hassle.

Just ask yes or no like everyone else, why re-invent the wheel if the car is already running, everyone will either tell the truth if they're adults or lie if they are kids, don't make me wait a minute... jeez, I FINISHED WRITING THIS WHEN THE MUSIC STARTED!!!
I just timed it, it's around 54 seconds, oh my god...
 

bloodfermon

New Member
Dec 11, 2017
6
4
Because opening the Item Menu every time I want to look at my phone got a bit annoying in the game, I decided to add a little script that makes it so that pressing the P button on the keyboard will open the Phone menu.

Game version: v0.1.9

In the game's files go to;
www/js/main.js

Which should look something like this;
JavaScript:
//=============================================================================
// main.js
//=============================================================================

PluginManager.setup($plugins);

window.onload = function() {
    SceneManager.run(Scene_Boot);
};
Change that to this;
JavaScript:
//=============================================================================
// main.js
//=============================================================================

PluginManager.setup($plugins);

window.onload = function() {
    SceneManager.run(Scene_Boot);
  
    // Adding the P for Phone button
    document.addEventListener('keydown', function(event){
        if (!event.ctrlKey && !event.altKey && event.keyCode === 80 ) {        // 80 is the keyCode for the "p" button on your keyboard
            $gameTemp.reserveCommonEvent( 61 );        // 61 is the event id for the phone menu
        }
    });
};
It's crude, but it gets the job done, cuts back on the annoyance of having to traverse the menu every time you want to skip time or look up a shedule.

It's probably best to not edit the main.js file of the game and add this as an actual plugin, but this is an easier way to implement it and it shouldn't break anything.
 
Last edited:
  • Like
Reactions: NishiGM

bloodfermon

New Member
Dec 11, 2017
6
4
Guys tell me pls, how open lesbo scene?
In school there's a guy next to your desk called Theo, get his points up to 50 ( by talking to him during class and having lunch with him ).
Then, before class talk to him and he'll hand you a magazine.
Go home and look at the magazine at your desk.
 
  • Like
Reactions: Naarden

4Finger

Engaged Member
Nov 24, 2016
2,113
1,420
Daily Lives of my Countryside [v.0.1.7 Fixed Rus / v.0.1.9.1 Eng] (Rus/Eng) (2020) [RPGM]

Torrent:



You don't have permission to view the spoiler content. Log in or register now.
 
Status
Not open for further replies.
4.00 star(s) 177 Votes