In player.java it checks and see if your an excisting member it checks and sees if it has been 24 hours and if it has it gives you 2 spins. However, when your a new player it gives it to you to cause your new. I tryied getting it so if you log on and use a new different account but same ip you wait 2 days to get SOF spins. This is what i tried but it's not working.

Code:
lastIP = getSession().getIP();
string ip = getSession().getIp();
if(lastIP != ip){
			if (getLastSpinsReceived() < Utils.currentTimeMillis()) {
				getSpinsManager().addSpins();
			}
		}
I can't figure out on how to get the former ips :/