Search results

  1. E

    how do you see the new Gabilani Pirate content?

    If you want to lose faster, run this in JavaScript console after the fight starts: (function(){var s=ships.SHIP; s.energyRaw=0; s.shieldsRaw=0; s.HPRaw=1;})(); And if you don't want to lose, run this before every turn: (function(){var s=ships.SHIP; s.energyRaw=s.energyMax()...
  2. E

    Giant icon in the Windows audio mixer

    Yeah, that's why I said "on Windows" several times. Maybe we should just leave the game as it is, and I'll fix this on my end. I'm patching the game anyway, so editing one more line won't make any difference for me.
  3. E

    Giant icon in the Windows audio mixer

    I just tested 0.9.086 and it's working fine. Thank you!
  4. E

    Giant icon in the Windows audio mixer

    Yeah, either the exe icon or the one in the setIcon() call will do. The icons in the HTML aren't used by electron, they're used by browser as a favicon. I just deleted the icon from the exe and commented out the setIcon() call in main.js, and got the default icon in Explorer, the mixer, and the...
  5. E

    Giant icon in the Windows audio mixer

    I'd use ICO format instead of PNG on Windows. This would fix both the size in the mixer and the broken rendering in the taskbar/mixer where almost all of the icon is black. In other words, use an ICO icon for the exe instead of the current PNG one, and don't call win.setIcon() in function...
  6. E

    Firefox TITS and CoC 2 not working?

    I think I know what's causing this. If you disable cookies (globally or just for fenoxo.com), it also disables DOM storage (localStorage et al.), and that combined with lame coding breaks the game. So you need to enable cookies (globally or just for fenoxo.com).
  7. E

    Firefox TITS and CoC 2 not working?

    Try with extensions disabled. The main suspect would be an ad blocker, of course. Error messages in the javascript console (Ctrl+Shift+K) could shed some light as well.
  8. E

    Giant icon in the Windows audio mixer

    Happened somewhere after version 0.9.69. The icon in the Windows audio mixer is huge and covers the volume slider so you have to guess-click or use Tab to be able to focus it and change the volume. It's not even an icon, but a huge image. I know you guys don't use any audio in the game, but I do...
  9. E

    Typos and Etc

    Missing a closing square bracket after "pc.lowerGarments" in a Bizzy scene Sex -> Vaginal. In file content_tavros.*.js: pc.isCrotchGarbed() && output(" through your [pc.lowerGarments"),
  10. E

    Very low image resolution in desktop app

    This code is supposed to be used in the JavaScript console aka Developer Tools. To open the console, press Ctrl+Shift+I. Alternatively, press Alt to show the menu bar -> View -> Toggle Developer Tools. If this is "too much" for you, I'm attaching a script that should make it easier. It adds an...
  11. E

    Very low image resolution in desktop app

    Well, there is an updater in main.js, and it's exposed to the outer world as electronAPI in preload.js, so you can use that to get the x2 images used in the web version. (*) electronAPI.checkManifest() - build the list of files for downloading. (*) electronAPI.downloadImages() - download the...
  12. E

    Error When Loading Save From File

    I wouldn't bother if I was you. Even the character list is incomplete, and more important stuff like flags (which is essentially your quest progress) isn't there at all. If you still want to fiddle with it, Notepad++ with plugin JSTool can format (Plugins -> JSTool -> JSFormat) and parse...
  13. E

    [Fixt[ Luca Sub Switch is unavailable

    If you don't want to wait until this is fixed and just want to play NOW, you can fix it yourself. In file content_vesperia.*.js. replace both comparisons "<0" with ">=0" or ">-1" in this expression: pc.cockThatFits(luca.vaginalCapacity())<0||luca.cockThatFits(1.25*pc.biggestVaginalCapacity())<0...
  14. E

    "Give Clothes" button/action/menu doesn't partition items

    Updated the original post since mine also was buggy - thanks to copypasta, the outer function i was clobbered by the local function i defined inside the "for (var n = window.chunkUpAnArray(arr, 13), i = function()...)" loop. So I simply renamed thelocal function to w, i.e. for (var n =...
  15. E

    "Give Clothes" button/action/menu doesn't partition items

    So when you interacti with a crew member and click the "Give Clothes" button, it only shows the first 14 items. The function should utilize the chunkUpAnArray() pattern used in the sibling functions "Return Clothes" and "Destroy Clothes". For reference, below is my implementation based on one of...