- Sep 9, 2019
- 32
- 28
No. The Botnet mod works with any version (in theory and so far), Prinlup's needs a manual update. Last time it took a week or two, which is no guarantee it will be updated to version 0.300ccan i play 3.0 with this mod?
** It's probably possible to still use the prinlup mod on v0.300c without errors, just with limited content up to v0.260
As I said above, so I believe you're confused. Also you can easily use the update file with Botnet, just delete the .vanilla file, make sure the new "College Daze.html" is named correctly (no underscore or whatnot), then reapply botnet mod. As can be seen in the batch file:you can play any version with that mod. If new updates come you just need to redownload the whole game and rerun the file as if you just overwrite it becomes corrupted/unusable.
Code:
@echo off
if not exist "College Daze.html.vanilla" (
if not exist "College Daze.html" (
echo Error. College Daze.html not found. Make sure you run this bat in the game's folder.
pause
) else (
type "./College Daze.html" > "./College Daze.html.vanilla"
echo ^<script src="./mods/script.js"^>^</script^> >> "College Daze.html"
echo ^<link rel="stylesheet" href="./mods/style.css"^>^</link^> >> "College Daze.html"
echo Done applying mods. Enjoy.
pause
)
) else (
echo The mods have already been applied before.
echo Please apply the mods on a fresh unmodded copy of the game.
pause
)