Author Message

amilmand

00
Posts: 259

Location: ---
Occupation:
Age:
V$:
#156215   2019-05-26 00:12          
Hmm something seems fishy you should not get the Invalid wear errors, I removed every reference to that particular error message from the exe quite some time ago.
But maybe its just some remnant message from long ago.

Your city.java is not the latest one somehow, but I think I know where the error is coming from so lets try this first on your end:
open the *slrr_root_dir*\sl\Scripts\game\src\City.java file and replace this line:
if(Math.random() < 0.5 && (playerID+5) <= clubMax )
to this:
if(Math.random() < 0.5 && (playerID+5) < clubMax )

replace this other line:
if(Math.random() < 0.5 && (playerID+10) <= clubMax )
to this other line:
if(Math.random() < 0.5 && (playerID+10) < clubMax )
If indeed these do exist if not then share your \sl\Scripts\game\src\City.java file and I'll fix it and post it back thats fine too

Also delete the error.log file to clean it up, the game will recreate it on a crash (that would write to it) so you wont miss error messages.