Others Bus Voyeur [v25.3.5] [KingHayabusa]

1.50 star(s) 4 Votes

7767

EAT
Uploader
Content Moderator
Aug 5, 2016
1,231
142,245
563
1746254086382.png


Overview:
Undress girls using your phone's camera! But be careful, because they can notice that you are focusing the camera on them!​

Thread Updated: 2025-10-13
Release Date: 2024-05-30
Developer: KingHayabusa - -
Censored: No
Version: 25.3.5
OS: Windows
Language: English
Other Games: That Pervert!
Genre:
You don't have permission to view the spoiler content. Log in or register now.

Installation:
You don't have permission to view the spoiler content. Log in or register now.

Changelog:
You don't have permission to view the spoiler content. Log in or register now.

Developer Notes:
You don't have permission to view the spoiler content. Log in or register now.

DOWNLOAD
Win: - - - - -

1.png 1(1).jpg 3.png bsv4-576x1024.jpg bsv7-577x1024.jpg
 
Last edited:

FifouWeb

Member
Apr 26, 2018
153
96
255
Could be pleasant if a lot easier to achieve.
At the begining, not any clue to know how to active the phone (it's W key)
Once activated, right and left keys move the focus, but is there a way to stop it in the green zone ?
 
  • Like
Reactions: NotGeox

maverih345456

Well-Known Member
Feb 27, 2018
1,309
438
267
Lets hope someone get the full save of the game, by the way will anyone get the game Jan ken pop from the same guy who made the two games like the bus voyeur one
and also will anyone upload patreon posts into kemono so i can see the cheat codes from this one
 
  • Thinking Face
Reactions: str8up

babaicheg

Newbie
Mar 7, 2019
43
51
153
How to play... Lets see. Make photos... blah blah... can catch you... blah blah ok I am ready. Game start. Click. Click. Click cllick. CLICKCLICKCLICKCLIK... Nothing happens. Hmmm... May be I need to move forward? CLICK... DAMN CLICK CLICK CLICK CLICK CLICK CLICK... Shit... Ok, may be its like in those shooter games? W click WOW! I got phone camera! Ok, now to find another buttons to be able to play this AWESOME game!
 
  • Like
Reactions: Ashurys

maverih345456

Well-Known Member
Feb 27, 2018
1,309
438
267
How to play... Lets see. Make photos... blah blah... can catch you... blah blah ok I am ready. Game start. Click. Click. Click cllick. CLICKCLICKCLICKCLIK... Nothing happens. Hmmm... May be I need to move forward? CLICK... DAMN CLICK CLICK CLICK CLICK CLICK CLICK... Shit... Ok, may be its like in those shooter games? W click WOW! I got phone camera! Ok, now to find another buttons to be able to play this AWESOME game!
If you complete the game, give us a full save and also please get Jan ken pop from here
 

SmiffyHallo

Newbie
Aug 2, 2017
56
68
224
You know, I am incredibly worried that this will just be a stripping game rather than a porn game. Nudity just isn't reward enough in my world, not for the amount of work I'm asked to put in for this game.

Also, why does the girl zero in on me before I've even done anything? Personally I think level 1 should be a freebie so you can properly learn the controls.
Which, so far as I can tell is W to activate camera mode and A-D to maintain the focus on the green part. Which would be fine, if only the bloody thing didn't reset all the time. Incredibly tedious.
 

maverih345456

Well-Known Member
Feb 27, 2018
1,309
438
267
You know, I am incredibly worried that this will just be a stripping game rather than a porn game. Nudity just isn't reward enough in my world, not for the amount of work I'm asked to put in for this game.

Also, why does the girl zero in on me before I've even done anything? Personally I think level 1 should be a freebie so you can properly learn the controls.
Which, so far as I can tell is W to activate camera mode and A-D to maintain the focus on the green part. Which would be fine, if only the bloody thing didn't reset all the time. Incredibly tedious.
Its defiantly a stripping game maybe you can ask the creator in both itch and patreon abotu this and also there is something i have to tell you if you join the patreon find out the cheat in both kinghayabusa games but also import the patreon files into kemono and maybe get the Jan ken pop game, otherwise i have to do it myself next month as i dont understand why anyone cant do it.
 

abidinzubizaretta13

New Member
May 24, 2023
4
13
136
My novice cheat engine skill no work on this one, fellas. Grind incoming.
I also first tried cheat engine without success. Then I realized this is a chromium game. Ran it with following console command:

Code:
.\"Bus Voyeur.exe" --auto-open-devtools-for-tabs
And while the game is running I pressed F12 to open the DevTools!

In the Application tab, under storage, IndexedDB I found the game save/persistence parameters. They are stored in a horrible convoluted way. It's just a text that can be parsed to JSON / JS object. And no indicators about what number does what.

1760704053827.png

Luckily I recognized the amount of coins I have and changing/increasing it let me buy more upgrades.

Went to the Source tab > Snippets > +new Snippet

1760704437531.png
and added following logic that reads and parses the parameters into a JS object:

Code:
const request = indexedDB.open("c3-localstorage-2m2oqhlgof90t", 2);

request.onerror = (event) => {
  console.log("error");
};
request.onsuccess = (event) => {
  console.log("success");
  let db = event.target.result;
  let transaction = db.transaction("keyvaluepairs", "readonly");
  let objectStore = transaction.objectStore("keyvaluepairs");

  const getRequest = objectStore.get('Store_Unlocks');
  getRequest.onsuccess = (e) => {
    console.log(e);
      let str = e.target.result;
      store = JSON.parse(str);
      console.log('Store_Unlocks', store);
    };
  getRequest.onerror = (e) => {
        console.error('Error retrieving data:', e.target.error);
    };  

  const getRequest2 = objectStore.get('Girl_Unlocks');
  getRequest2.onsuccess = (e) => {
      let str = e.target.result;
      girl = JSON.parse(str);
      console.log('Girl_Unlocks', girl);
    };
  getRequest2.onerror = (e) => {
        console.error('Error retrieving data:', e.target.error);
    };  
};
Then used a separate script to change the values I want and persist/store them back to IndexedDb. Following snippet gave me 9999 coins.

Code:
const request = indexedDB.open("c3-localstorage-2m2oqhlgof90t", 2);

request.onerror = (event) => {
  console.log("error");
};
request.onsuccess = (event) => {
  console.log("success");
  let db = event.target.result;
  let transaction = db.transaction("keyvaluepairs", "readwrite");
  let objectStore = transaction.objectStore("keyvaluepairs");

  let store2 = store;
  store2["data"][5][0][0] = 9999;
  let store2Str = JSON.stringify(store2);
  const putRequest = objectStore.put(store2Str, "Store_Unlocks");
  putRequest.onsuccess = () => {
      console.log('Data written successfully!');
  };
  
  putRequest.onerror = (e) => {
      console.error('Error writing data:', e.target.error);
  };  
};
using which I unlocked all upgrades:

1760704634163.png

which was not particularly helpful :)

I hope others can utilize this approach and find means of unlocking gallery etc. ^_^
 
1.50 star(s) 4 Votes