I've been trying to do this for a while but can't,
Thanks
script=start on:changeday { 	if ($player_maxweight==0){ 		$player_maxweight=25000; 	} 	if ($player_maxweight<75000) { 		$player_maxweight+=500; 		player_maxweight $player_maxweight; 	} } on:load { 	if ($player_maxweight==0){ 		$player_maxweight=25000; 	} 	player_maxweight $player_maxweight; } script=end